forked from Ada-C11/personal-portfolio-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
43 lines (40 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>About</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/normalize.css">
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/style.css">
<script src="main.js"></script>
</head>
<body>
<nav>
<ul class="nav">
<li>
<a href="index.html">Main Page</a>
</li>
<li>
<a href="portfolio.html">Portfolio</a>
</li>
<li>
<a href="hobby-blog.html">Hobby</a>
</li>
<li>
<a href="about.html">About</a>
</li>
</ul>
</nav>
<hr>
<section id="contact">
<h2> Contact Info</h2>
<ul>
<li>
<a href="https://www.linkedin.com/in/ngoc-le-02227a53/">Linkedin</a>
</li>
<li>Email: ngocle@outlook</li>
</ul>
</section>
</body>
</html>