blob: eb3555f6658de77f8ee81d91cc5b9925a7f9eb01 (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<title>Simponic's Static Sites</title>
<link href="css/styles.css" rel="stylesheet">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<script src="https://kit.fontawesome.com/d7e97ed48f.js" crossorigin="anonymous"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="top-container animate__animated animate__fadeIn">
<img src="images/profile.jpg" class="profile-picture">
<p>
๐ Hello!
<br>
๐ค I'm Simponic.
<br>
๐ This page hosts strictly static content.
<br>
๐ My "real website" is at <a href="https://simponic.xyz">simponic.xyz</a>.
</p>
<div class="projects-grid">
<div class="project" onclick="window.location='dvd-logo/index.html'">
<div class="project-logo-container">
<i class="fa-solid fa-compact-disc"></i>
</div>
<div class="project-body">
<h1>DVD Logo Bouncing Animation</h1>
<p>Brings back the nostalgia of old-school DVD players with an intersection predictor. The twist: no Canvas API! Only svg's and absolute positioned images!</p>
</div>
</div>
<div class="project" onclick="window.location='maize-maze/index.html'">
<div class="project-logo-container">
<i class="fa-solid fa-diagram-project"></i>
</div>
<div class="project-body" >
<h1>The A-maze-ing Maize Maze</h1>
<p>A Randomized Kruskal's Maze game with BFS path-finding. You play as a ๐ฝcorn stalk trying to become ๐ฟpopcorn.</p>
</div>
</div>
<div class="project" onclick="window.location='centipede/index.html'">
<div class="project-logo-container">
<i class="fa-solid fa-mosquito"></i>
</div>
<div class="project-body" >
<h1>Centipede</h1>
<p>In this game, shoot all the centipede bodys and score points and go up levels.</p>
</div>
</div>
<div class="project" onclick="window.location='julia/index.html'">
<div class="project-logo-container">
<i class="fa-solid fa-square-root-variable"></i>
</div>
<div class="project-body">
<h1>Julia Set Explorer</h1>
<p>Zoom, pan, and "c" complex changes (terrible pun on see) in this fun GPU-accelerated playground!</p>
</div>
</div>
</div>
</div>
</body>
</html>
|