-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (34 loc) · 2.29 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
<!DOCTYPE html>
<html><title>Home</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" charset="UTF-8">
<head>
<link href='https://fonts.googleapis.com/css?family=IM Fell English' rel='stylesheet'>
<link rel="icon" href="Images/Logo.svg">
<link rel="stylesheet" href="index-styles.css"/>
</head>
<body>
<div id = "background">
<div id = "content">
<h1 class = "title">Welcome to my website!</h1>
<p>
Hi! This used to hold the school schedules. Now those are super outdated because of COVID, and I don't feel like
updating this. If you want to see the old homepage with the links to the schedule (which was kinda cool imo, like
it had an auto-loading dark mode that you could switch off of which I came up with), go <a href="homeOld.html">here</a>.
<br/><br/>
Current projects:
<ul>
<li><a class="proj-link" href="idk.html">SVG animation test</a>: The most complicated thing I've done with web stuff. Uses requestAnimationFrame to animate SVGs.</li>
<li><a class="proj-link" href="SVG.html">Basic SVG text editor</a>: I was messing with SVG a while ago and wanted one, but this is not any good. It was hard to find a web SVG text editor; eventually I went with <a href="https://atom.io/packages/svg-preview">this good SVG preview extension for Atom</a>. I intend to eventually, when I know more, make this actually useful, with some sort of visual way to edit attributes, add tags, etc.</li>
</ul>
Links:
<ul>
<li>GitHub / <a class="social-link ext-link" href="https://github.com/TheHarmonicRealm">TheHarmonicRealm</a></li>
<li>Site repository / <a class="social-link ext-link" href="https://github.com/TheHarmonicRealm">TheHarmonicRealm/TheHarmonicRealm.github.io</a></li>
</ul>
Also: check out <a class="proj-link" href="https://github.com/Elkwizard/Hengine">my friend's crazy physics engine thing</a>.
</ul>
</p>
</div>
</div>
</body>
</html>