-
Notifications
You must be signed in to change notification settings - Fork 0
/
success.html
75 lines (60 loc) · 2.99 KB
/
success.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- Own CSS -->
<link rel="stylesheet" href="css/style.css">
<!-- Font -->
<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=Roboto+Slab:wght@400;700&display=swap" rel="stylesheet">
<title>Michael Knight</title>
</head>
<body>
<!-- Header Section -->
<div class="container">
<div class="row">
<div class="col-12">
<h1 class="text-center pt-5 pb-2">Michael Knight</h1>
</div>
<!-- Social Icons -->
<div class="row-cols-1">
<div class="col-12 text-center">
<a href="https://mknightdev.itch.io" target="_blank"><i class="fab fa-itch-io fa-2x"></i></a>
<a href="https://twitter.com/mknightdev" target="_blank"><i class="fab fa-twitter-square fa-2x"></i></a></a>
<a href="https://github.com/mknightdev" target="_blank"><i class="fab fa-github-square fa-2x"></i></a>
<a href="https://www.linkedin.com/in/michael-knight-b80190176/" target="_blank"><i class="fab fa-linkedin fa-2x"></i></a>
<a href="mailto:[email protected]" target="_blank"><i class="fas fa-envelope-square fa-2x"></i></a>
</div>
<div class="row-cols-1">
<div class="col-12 mt-3">
<div class="mynav text-center">
<a href="index"><button type="button" class="btn">Projects</button></a>
<a href="about"><button type="button" class="btn">About</button></a>
<a href="contact"><button type="button" class="btn btn-active">Contact</button></a>
</div>
</div>
</div>
</div>
<div class="container mt-5">
<h1>Contact Me!</h1>
<p>Success! I will get back to you as soon as possible.</p>
</div>
<!-- Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<!-- Font Awesome Icons -->
<script src="https://kit.fontawesome.com/0feee00f65.js" crossorigin="anonymous"></script>
<!-- Own Scripts -->
<script src="js/scripts.js"></script>
<!-- Jquery cdn -->
<script
src="https://code.jquery.com/jquery-3.6.0.js"
integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk="
crossorigin="anonymous">
</script>
</body>
</html>