-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (62 loc) · 2.6 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<title>Nifty Stuff</title>
<style>
html {
font-family: sans-serif;
}
.personal {
opacity: .4;
filter: blur(10px);
transition: 1s .5s;
transition-timing-function: cubic-bezier(0, 0, 0, 1);
}
.personal:hover {
opacity: 1;
filter: blur(0);
transition: .5s;
}
</style>
</head>
<body>
<h1>Hooray For Links</h1>
<p>Here is some stuff I made and I put it on the internet</p>
<ul>
<li>Randomizers:</li>
<ul>
<li><a href="RandomNDE.html">Random NDE</a></li>
<li><a href="RandomVerse.html">Random Bible Verse</a></li>
<li><a href="hrrando.html">Random Toon/Page from homestarrunner.com</a></li>
<li><a href="chrando.html">Random Page from blog.codinghorror.com</a></li>
<li><a href="josrando.html">Random Page from www.joelonsoftware.com</a></li>
<li><a href="restaurant.html">Random Restaurant</a></li>
</ul>
<li><a href="Resolutions.html">Screen Resolutions</a></li>
<li><a href="Screens.html">Screen Sizes</a></li>
<li><a href="formulas.html">Formulas</a></li>
<li><a href="EmojiTest.html">Emoji Test Page</a> and <a href="unicode.html">Unicode Test Page</a></li>
<li><a href="FindYourRouter.html">Find Your Router</a></li>
<li><a href="https://github.com/Jesse-Hufstetler/Jesse-Hufstetler.github.io/tree/main/DefaultReaperThemes">Old Default Reaper Themes</a></li>
<li><a href="timestamp.html">Timestamp Generator</a></li>
<li><a href="http://glowshrimpsoftware.com/">My Other Site, from before I knew GitHub would host a site for free</a>
<ul>
<li><a href="http://glowshrimpsoftware.com/vault.html">The page from my other site where there is SUPER old stuff</a></li>
</ul>
</li>
<li><a href="https://github.com/Jesse-Hufstetler/Jesse-Hufstetler.github.io/tree/main">The code for this site</a></li>
</ul>
<div class="personal">
<hr>
<p>Personal Projects:</p>
<ul>
<li><a href="JoshSadieDash.html">Josh & Sadie Dash</a></li>
<li><a href="dash.html">Chromebook Dash</a></li>
<li><a href="dash2.html">Custom Screensaver for my PCs</a> (for use with <a href="https://github.com/ZenProjects/Chromium-Web-Page-Screensaver">this</a>)</li>
</ul>
</div>
</body>
</html>