-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
44 lines (44 loc) · 1.58 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
<!DOCTYPE html>
<html lang="no">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>About | Khai H. J. Nguyen</title>
<link rel="stylesheet" href="css/style.css">
<link rel="icon" type="image/png" href="img/cerealguy.png">
</head>
<body>
<div>
<nav class="navbar">
<div class="content">
<div class="logo">
<a href="https://www.khaihjn.no/">Khai</a>
</div>
<ul class="menu-list">
<div class="icon cancel-btn">
<i class="fas fa-times"></i>
</div>
<li><a href="https://www.khaihjn.no/">Home</a></li>
<li><a href="about">About</a></li>
<li><a href="https://github.com/KhaiHJN" target="_blank">Projects</a></li>
<li><a href="contact">Contact</a></li>
</ul>
<div class="icon menu-btn">
<i class="fas fa-bars"></i>
</div>
</div>
</nav>
<div class="empty"></div>
<div class="about">
<div class="content">
<div class="content2">
<div class="title">About Me</div>
<p>Hi! My name is Khai H. J. Nguyen, 21 years old from Kristiansand, Norway. And im currently almost done with my bachelor's degree in IT and Information system at University of Agder.</p>
</div>
</div>
</div>
</div>
<script src="js/style.js"></script>
<script src="https://kit.fontawesome.com/0756b4f86c.js" crossorigin="anonymous"></script>
</body>
</html>