-
Notifications
You must be signed in to change notification settings - Fork 0
/
thanks.html
53 lines (52 loc) · 2.18 KB
/
thanks.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="/src/css/aboutme.css">
<link rel="stylesheet" href="/src/css/contact.css" />
<link rel="apple-touch-icon" sizes="180x180" href="src/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="src/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="src/favicon/favicon-16x16.png">
<link rel="manifest" href="src/favicon/site.webmanifest">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;600;800&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/49bf5d65f5.js" crossorigin="anonymous"></script>
<title>Contact Form</title>
<link rel="stylesheet" href="">
</head>
<body>
<div>
<nav>
<div class="logo">
<a href="/" >Daniel Chan</a>
</div>
<div class="links" id="main-nav">
<a href="/projects" >Projects</a>
<a href="/blogs" >Blogs</a>
<a href="/contact" >Contact</a>
</div>
</nav>
</div>
<div class="thanks">
<h1>
Thanks for your message, I'll get back to you as soon as I can! 😄
</h1>
</div>
<footer>
<div class="container">
<div class="social-media">
<a href="https://www.github.com/danchan020" title="Github">
<i class="fa-brands fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/danielchan-/" title="LinkedIn">
<i class="fa-brands fa-linkedin"></i>
</a>
<a href="https://medium.com/@danchan020" title="Medium">
<i class="fa-brands fa-medium"></i>
</a>
</div>
</footer>
<script src="./src/js/index.js" async defer></script>
</body>
</html>