-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (36 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<script src="Resources/JavaScript/jquery-3.4.1.min.js" defer></script>
<script src="Resources/JavaScript/NavBarScroll.js" defer></script>
<title>Flails Website</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="Resources/Images/Icon.png">
<link rel="stylesheet" type="text/css" href="Resources\CSS\NavBarStyle.css">
<link rel="stylesheet" type="text/css" href="Resources\CSS\IndexStyle.css">
</head>
<body>
<div class="main-header" id="main-header">
<h1 class="main-header">
<a class="main-header" href="">FlailoftheLord</a>
</h1>
<div id="navigation">
<a class="nav-links" style="background-color: rgba(49, 45, 49, 0.9);" href="">Home</a>
<a class="nav-links" href="Resources/Pages/about.html">About</a>
<a class="nav-links" href="Resources/Pages/projects.html">My Projects</a>
<a class="nav-links" href="Resources/Pages/contact.html">Support & Contact</a>
<a class="nav-links" href="">Erm... idk</a>
</div>
</div>
<div class="content-box">
<p id="mainTextBox">
I never actually intended to put anything here...
But it seems that I have a website now.
So, welcome!<br>
</p>
</div>
<footer>
<p id="copyright"> Copyright © FlailoftheLord - 2024</p>
</footer>
</body>
</html>