-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
53 lines (52 loc) · 2.44 KB
/
about.html
File metadata and controls
53 lines (52 loc) · 2.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://use.fontawesome.com/d1341f9b7a.js"></script>
<title>About Me</title>
<!-- <link href="stylesheets/style.css" rel="stylesheet" /> -->
<link href="stylesheets/about.css" rel="stylesheet" />
</head>
<body>
<div class="container">
<header>
<ul>
<li><h2 class="logo">About<span>me</span></h2></li>
</ul>
</header>
<aside class="sidebar">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="about.html">Contact me</a></li>
<li><a href="portfolio.html" class="button">Projects at Ada</a></li>
</ul>
</nav>
</aside>
<div class="main-about">
<div class="box">
<img src="../images/photo3.jpg" alt="personal photo" class="box-img">
<h1>Mitra Maghsoudloo</h1>
<h5>Future Programmer - Former Architectal Designer</h5>
<p>I am a software developer student at "Ada developer academy", currently living in Seattle, WA.
<span>Before Ada, I was working as an architectural designer with a focus on design and build of Highrise Resindetial and Hospitality Projects. Most of the projects I used to work on were located in Atlanta, GA where I did my master in Architecture at Georgia Tech Institute of Technology.
During couple of years of studying and working, I found my interest more towards the technology part of Architecture.
In my free time, I'd like to Travel, doing some yoga, cooking and spending time with friends.
</span></p>
<ul>
<li><a href="#"><i class="fa fa-brands fa-github" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="fa fa-brands fa-linkedin" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="fa fa-facebook-square" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="fa fa-twitter-square" aria-hidden="true"></i></a></li>
</ul>
</div>
</div>
</div>
<footer>
<small>© Copyright 2022, Mitra Maghsoudloo</small>
</footer>
</body>
</html>