-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (100 loc) · 3.99 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Page Information
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>Jourdan's Page</title>
<meta name="description" content="Landing page">
<meta name="author" content="Jourdan Keillor">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS -->
<!-- General -->
<link rel="stylesheet" href="css/styles.css">
<link rel="preload" href="fonts/BerkeleyMonoVariable.woff2" as="font" type="font/woff2" crossorigin="anonymous">
<!-- Brand Styles -->
<link rel="stylesheet" href="css/brands.css">
<!-- Navbar -->
<link rel="stylesheet" href="css/navbar.css">
<script src="./navbar.js"></script>
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="images/avatar1.jpg">
<style>
canvas {
position: fixed;
top: 0;
left: 0;
z-index: -1; /* Ensure the canvas is behind other content */
width: 100%;
height: 100%;
filter: blur(10px);
}
.container {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh; /* Ensure the container takes up the full height of the viewport */
}
</style>
</head>
<body>
<!-- Navbar
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<nav class="navbar">
<!-- This will display a link to the index page on the upper-left corner -->
<div class="header-title">
<a href="index.html">jozk.me</a>
</div>
<!-- This is for hamberger menu -->
<label for="check">
<input type="checkbox" id="check" class="toggle-button"/>
<span></span>
<span></span>
<span></span>
</label>
<!-- This is the link for the different pages -->
<div class="navbar-links">
<ul>
<li><a href="about.html" class="tab">About</a></li>
<li><a href="socials.html" class="tab">Socials</a></li>
<li><a href="media.html" class="tab">Media</a></li>
<li><a href="projects.html" class="tab">Projects</a></li>
</ul>
</div>
</nav>
<canvas id="canvas"></canvas>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<script src="scripts/particles/three.js"></script>
<!-- Primary Page Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="container">
<div class="row">
<div class="column" style="margin-top: 10%">
<br>
<!-- Title -->
<h1>Welcome</h1>
</div>
</div>
</div>
<!-- Footer
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<footer style="bottom: 0; width: 100%; height: 50px; text-align: center; display: flex; flex-direction: column; justify-content: center;">
<div class="row">
<div class="column">
<br>
<br>
<br>
<br>
<br>
<p style="font-size: 75%;">© 2023 Jourdan Keillor · <a href="/pages/extra/privacy.html">Privacy</a>
<br>Powered by <a href="https://vercel.com/">Vercel</a> and forked from <a href="https://littlelink.io/">LittleLink</a></p>
</div>
</div>
</footer>
<!-- End Document
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
</body>
</html>