-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (83 loc) · 4.71 KB
/
index.html
File metadata and controls
94 lines (83 loc) · 4.71 KB
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
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wow So Cool!</title>
<link rel="stylesheet" href="style.css">
<script src="sparkle.js"></script>
</head>
<body>
<div id="container">
<br/>
<div id="headerArea">
<nav id="navbar" style="margin-bottom: 0px;"><ul>
<li><a href="#">Home</a></li>
<li><a href="/links">Links</a></li>
<li><a href="/contact">Contact</a></li>
</ul></nav></div>
<div id="flex">
<aside id="leftSidebar" style="margin-right: 0px;">
<h2>Updates</h2>
<div class="box">
<p>I recently updated my website as of Febuary of 2025!</p>
<ul style="padding-left:10px;">
<li>Changed it from the boring style to <span class="rainbow">fun</span> style!</li>
<li>Removed a lot of old random files i wasn't using or weren't accessible</li>
<li>Added some fun links to ~wild places</li>
</ul>
</div>
<h2>Hi there!</h2>
<h3>Other Tools</h3>
<ul>
<li><a href="https://github.com/DoctorMod/redflags" target="_blank">Red Flags</a></li>
<li><a href="https://github.com/DoctorMod/essai" target="_blank">Essai</a></li>
</ul>
</aside>
<main>
<h1><img class="header" alt="Doctor Mod" src="img/header.png"></h1>
<hr/>
<p><strong>hi this is my personal website!</strong>
<ul>
<li>any pronouns</li>
<li>idiot</li>
<li>computer wizard</li>
<li>and all-around <span class="rainbow">freak</span></li>
</ul>
</p>
<p>I really like to mess around with stupid programming stuff, but also I sometimes make some fun games or whatever!</p>
<p>If you want to go check out any of the random things i spend my time making feel free to check out my <a href="https://github.com/DoctorMod" target="_blank">Github</a>. No promises that I'm actually doing anything of note right now, but like the point stands, go check it out lol.</p>
<p>If you're feeling up for it, feel free to go rummage around here, there is probably something that will catch your interest on this site anyway. </p>
<p>Check the links in the sidebar to go look at something cool!</p>
<p> - More serious things? - </p>
<p>I don't know if this is actually more serious but if you are interested in contacting me, feel free to at <a href="mailto:doctormod10@gmail.com">doctormod10@gmail.com</a>. I promise i do actually know how to code properly, I just like this asthetic.</p>
<p>Anyway, I hope you have a great day!</p>
<p> - Fun things - </p>
<p>Here are some fun things you can do:</p>
<ul>
<li>go outside</li>
<li>touch grass</li>
<li>look at sun</li>
</ul>
</main>
</div>
<footer id="footer" style="margin-top: 0px;">
<div id="badges">
<a rel="noreferrer" href="https://doctormod.sytes.net" target="_blank"><img src="/img/badges/iscool.png" alt="doctor mod is cool" title="this one!"></a>
<a rel="noreferrer" href="https://cyber.dabamos.de/88x31" target="_blank"><img src="/img/badges/88x31.gif" alt="88x31" title="baaaadges"></a>
<img src="/img/badges/shrek2.bmp" alt="shrek2" title="shrek but again">
<a rel="noreferrer" href="https://librewolf.net/" target="_blank"><img src="/img/badges/NetscapeNow.gif" alt="netscape now" title="but seriously get firefox"></a>
<img src="/img/badges/2019.bmp" alt="still using buttons in 2019" title="i love buttons">
<a rel="noreferrer" href="https://github.com/gorhill/uBlock" target="_blank"><img src="/img/badges/ublock.bmp" alt="ublock" title="ublock ads right now"></a>
<img src="/img/badges/death.gif" alt="pro-death" title="i <3 die">
<a rel="noreferrer" href="https://getpaint.net" target="_blank"><img src="/img/badges/pdn.bmp" alt="paint dot net" title="painting, but for free"></a>
</div>
© <span id="year"></span> wow.so.cool.gov! | <a href="https://doctormod.github.io" target="_blank">doctormod.github.io</a> | <a href="/privacy-policy">Privacy Policy</a>
</footer>
</div>
<script>
// this script is for the year in the footer
document.getElementById("year").innerHTML = new Date().getFullYear();
</script>
</body>
</html>