-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
91 lines (64 loc) · 2.78 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
<!doctype html>
<!--
This document is for customizing the UX/UI.
If you want to customize the colors + UI styles, go to /data/style.css
There are a few un-used files mentioned here that you can poke thru if you want, or use in your project.
This file is very simple, and not very advanced.
Even with this, I have included comments explaining what most lines do!
-->
<html>
<head> <!-- start the behind the scenes section of our page -->
<meta charset="utf-8">
<title>☆ starg3n ☆</title> <!-- name our page -->
<link rel="icon" type="/image/x-icon" href="./data/favicon.ico"> <!-- load in a tab icon -->
<link rel="stylesheet" href="./data/style.css"> <!-- make the page look nice using cascading style sheets (css) -->
<script src="./data/indexscript.js"></script> <!-- unused script, might use this in the future, not sure yet tho.-->
<script src="./data/randomtext.js"></script> <!-- another unused script, might use this in the future, not sure yet tho.-->
</head>
<body> <!-- start the part of the page that you see -->
<div style="text-align:center"> <!-- align everything to the center -->
<p><a href="https://github.com/starg3n/starg3n.github.io"><img src="./data/logo.png"></img></a></p> <!-- add the image logo, and link it to the github page -->
<p><b>☆☆☆☆☆☆☆☆☆</b></p>
<p><a href="./spelunky/src/index.html"> <!-- link -->
<button>☆ spelunky ☆</button> <!-- button -->
</a></p>
<p><a href="./pico8/picomanager.html">
<button>☆ pico-8 ☆</button>
</a></p>
<p><a href="./bit/index.html">
<button>☆ bitburner ☆</button>
</a></p>
<p><a href="./gba/index.html">
<button>☆ gba ☆</button>
</a></p>
<p><a href="./rr/index.html">
<button>☆ rugg rouge ☆</button>
</a></p>
<p><a href="./hl1/index.html">
<button>☆ hl1 ☆</button>
</a></p>
<p><a href="./beepbox/index.html">
<button>☆ beepbox ☆</button>
</a></p>
<p><a href="./ds/index.html">
<button>☆ ds ☆</button>
</a></p>
<p><a href="./yume/index.html">
<button>☆ yume nikki ☆</button>
</a></p>
<p><a href="./sm64/index.html">
<button>☆ sm64 ☆</button>
</a></p>
<p><a href="./craft/eagler.html">
<button>☆ eagler ☆</button>
</a></p>
<p><a href="./flash/index.html">
<button>☆ flash ☆</button>
</a></p>
<p><a href="./cc/index.html">
<button>☆ cookie ☆</button>
</a></p>
<p><b>☆☆☆☆☆☆☆☆☆</b></p>
</div>
</body>
</html>