-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (39 loc) · 1.52 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
<!DOCTYPE html>
<html>
<head>
<title>SkyeTheDemon</title>
<link type="text/css" rel="stylesheet" href="css/index.css">
</head>
<body>
<main>
<div class="header-img">
<h1>SkyeTheDemon</h1>
<p>Artist - Streamer - Competitive Player - Tournament Organizer</p>
</div>
</main>
<div id="header">
<!--This is going to basically be the banner area of the website-->
</div>
<div id="navbar">
<!--Links won't be here as I am making the links clickable through buttons
so the navbar will be but a black line-->
</div>
<div class="pages">
<button class="Homepagebutton"
onclick="window.location.href = 'about.html';">About</button>
<BR><button class="Homepagebutton"
onclick="window.location.href = 'portfolio.html';">Portfolio</button>
<!--buttons that lead to the "About", "Portfolio", and "FAQ" pages-->
</div>
<div id="separator">
<!--to separate the page buttons and the icons to my other socials-->
</div>
<div id="icons">
<!--Put Icon buttons here to link to my other social medias!-->
</div>
<div id="credit">
<p>Website created by <a href="https://github.com/SkyeTheDemon">SkyeTheDemon</a>♡</p>
<!--Simple credit to the creator of the page being myself^^-->
</div>
</body>
</html>