-
Notifications
You must be signed in to change notification settings - Fork 1
/
portfolio.html
51 lines (45 loc) · 1.82 KB
/
portfolio.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Esther Ng - Portfolio</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="portfolio">
<h2>PORTFOLIO</h2>
</section>
<section class="responsive-website">
<h2>RESPONSIVE WEBSITE</h2>
<a href="http://estherng.rocks"><img src="images/htmlsite.jpg" alt="Website Thumbnail" /></a>
</section>
<section class="magic-8-ball">
<h2>MAGIC 8 BALL</h2>
<a href="http://output.jsbin.com/yukoleg/"><img src="images/magic8ball.jpg" alt="Magic 8 Ball" /></a>
</section>
<section class="wordpress-site">
<h2>WORDPRESS SITE</h2>
<a href="#"><img src="images/wordpresssite.jpg" alt="Wordpress Site" /></a>
</section>
<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>