-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (49 loc) · 1.13 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
43
44
45
46
47
48
49
<html>
<head>
<link rel="stylesheet" href="files/home.css" />
</head>
<body>
<header>
<nav>
<div class="nav-item">
<a href="/" class="underline">/linkedin</a>
</div>
<div class="nav-item">
<a href="https://github.com/congminh1254" class="underline">/github</a>
</div>
<div class="nav-item">
<a href="https://www.facebook.com/congminhO18/" class="underline">/facebook</a>
</div>
<div class="nav-item">
<a href="mailto:[email protected]" class="underline">/mail</a>
</div>
</nav>
</header>
<div class="site-title">
<h1>
<a href="/">$ curl https://ncminh.dev</a
><span class="cursor">↵</span>
</h1>
</div>
<div id="app" class="container"></div>
<footer>
<div>
©
<span id="copyright">
<script>
document
.getElementById("copyright")
.appendChild(
document.createTextNode(
new Date().getFullYear()
)
);
</script>
</span>
Minh Nguyen
</div>
</footer>
<script src="https://unpkg.com/typewriter-effect@latest/dist/core.js"></script>
<script src="files/home.js"></script>
</body>
</html>