-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
42 lines (40 loc) · 1.43 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Esther Ng</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 class="home">
<h1>esther ng</h1>
<!-- <nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
</ul>
</nav> -->
</header>
<section class="links-to-pages">
<div class="about-box">
<h2><a href="about.html">About</a></h2>
</div>
<div class="portfolio-box">
<h2><a href="portfolio.html">Portfolio</a></h2>
</div>
<div class="blog-box">
<h2><a href="blog.html">Blog</a></h2>
</div>
</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>