-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
57 lines (53 loc) · 2.23 KB
/
about.html
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
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Esther Ng - About</title>
<link rel="stylesheet" href="styles/styles.css">
<link href='https://fonts.googleapis.com/css?family=Crushed' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
</head>
<body>
<header>
<h1><a href="index.html">esther ng</a></h1>
<nav>
<ul>
<li class='about-box'><a href="about.html">About</a></li>
<li class="portfolio-box"><a href="portfolio.html">Portfolio</a></li>
<li class="blog-box"><a href="blog.html">Blog</a></li>
</ul>
</nav>
</header>
<section class="about">
<div>
<h2><a href="blog.html">Adventure Enthusiast</a></h2>
<img src="images/adventure.png" alt="Esther's Photo" />
</div>
<div>
<h2><a href="portfolio.html">Developer</a></h2>
<img src="images/esther.png" alt="Esther's Photo" />
</div>
<div>
<h2><a href="blog.html">Eatie</a></h2>
<img src="images/burger.png" alt="Esther's Photo" />
</div>
</section>
<article class="about-me">
<h3>HELLO, I'M ESTHER</h3>
<p>
I am currently attending the Ada Developers Academy (Cohort 6) in Seattle. I am set to graduate in July 2017. My objective is to become a well-rounded developer and skilled software crafts[wo]man.
</p>
<p>
I love combining technical skills with different approaches to find solutions. This has emerged as an underlying theme with nearly everything I enjoy doing. When I am not building my craft, I like to rock climb, travel and cook.
</p>
</article>
<footer>
<ul>
<li><a href="https://www.linkedin.com/in/esther-ng-5020407"><img src="images/in-icon.png" alt="linked-in" /></a></li>
<li><a href="https://github.com/esther-ng"><img src="images/git-icon.png" alt="github" /></a></li>
<li><a href="https://www.freecodecamp.com/esther-ng"><img src="images/fcc-icon.png" alt="free-code-camp" /></a></li>
</ul>
</footer>
</body>
</html>