-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (55 loc) · 1.7 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
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/css/home.css" />
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script src="https://kit.fontawesome.com/a890946c74.js"></script>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Dosis:wght@300;400;600&display=swap"
rel="stylesheet"
/>
<title>Kaelen's website</title>
</head>
<body>
<div id="nav-placeholder"></div>
<section>
<div class="info">
<h1>Kaelen <span>Saythongkham</span></h1>
<ul class="social">
<li class="social">
<a
href="https://instagram.com/phetsouvanh"
class="social"
target="_blank"
><i class="fab fa-instagram" aria-hidden="true"></i
></a>
</li>
<li class="social">
<a
href="https://www.linkedin.com/in/kaelensayth/"
class="social"
target="_blank"
><i class="fab fa-linkedin" aria-hidden="true"></i
></a>
</li>
<li class="social">
<a href="https://github.com/kaelens" class="social" target="_blank"
><i class="fab fa-github" aria-hidden="true"></i
></a>
</li>
</ul>
</div>
</section>
<div class="rotate">
<img src="/assets/ouroboros.png" alt="Ouroboros" id="Ouroboros">
</div>
<script>
$(function () {
$("#nav-placeholder").load("nav.html");
});
</script>
</body>
</html>