-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (61 loc) · 2.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Rowan Bird"/>
<meta name="description" content="Sample app that shows all NeonUI controls."/>
<title>RowanCrE's Home</title>
<link rel="icon" type="image/x-icon" href="NeonUI/src/error.png">
<link rel="stylesheet" href="NeonUI/NeonUI.css"/>
<link rel="stylesheet" href="Styles.css"/>
<link rel="icon" type="image/x-icon" href="favicon.png">
</head>
<body class="LightMode flexRow">
<nav class="NavViewExpanded">
<ul>
<button class="iconRegular iconButton" onclick="toggleClass('nav', 'NavViewExpanded', 'NavViewCollapsed')"></button>
<li class="NavViewItem NavViewItemSelected">
<img src="NeonUI/src/Home.svg">
Home
</li>
<li class="NavViewItem" onclick="location.href = 'easteregg.html';">
<img src="NeonUI/src/favicon.png">
:)
</li>
<li class="NavViewItem" onclick="location.href = 'https://youtube.com/rowancre';">
<img src="NeonUI/src/error.png">
My Youtube Channel
</li>
<li class="NavViewItem" onclick="location.href = 'https://twitter.com/RowanCrE';">
<img src="NeonUI/src/error.png">
My Twitter page
</li>
<li class="NavViewItem" onclick="location.href = 'https://youtube.com/rowancre';">
<img src="NeonUI/src/man.png">
About me
</li>
<li class="NavViewItem" onclick="location.href = 'SDK.html';">
<img src="NeonUI/src/coding.ico">
Windows 2004
</li>
</ul>
</nav>
<main>
<center>
<br>
<h style="font-size: 80px;">Hi!</h>
<br>
<h style="font-size: 30px;">Welcome to my website!</h>
<br>
<br>
</center>
<br>
<div style="width: 270px; margin-left: 50px;" class="Card">
<p>Last updated: 16th of May, 2022</p>
</div>
</main>
</body>
<script src="NeonUI/NeonUI.js"></script>
<script src="gallery.js"></script>
</html>