-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (59 loc) · 1.52 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>
<!-- Character Encoding -->
<meta charset="UTF-8">
<!-- Page Title -->
<title>The Order of the Simulation</title>
<!-- CSS -->
<link rel="stylesheet" href="stylesheet.css">
</head>
<body>
<!-- Header -->
<div class="topnav">
<!-- Title -->
<h1>
The Order of the Simulation
</h1>
</div>
<!-- Body -->
<div class="pagebody">
<!-- About -->
<p>
Hello! Welcome to our website. We are a group of friends that love all things STEAM-related. We currently have 2 projects in development.
</p>
<!-- Projects -->
<h2>
Projects
</h2>
<!-- Path-Tracing Renderer -->
<div class="path-tracing-renderer">
<h3>
<a href="https://github.com/The-Order-of-the-Simulation/Path-Tracing-Renderer">
Path-Tracing Renderer
</a>
</h3>
<p>
This project renders images using <a href="https://en.wikipedia.org/wiki/Path_tracing">Path-Tracing</a>.
</p>
</div>
<!-- Particle Simulation -->
<div class="particle-simulation">
<h3>
<a href="https://github.com/The-Order-of-the-Simulation/Particle-Simulation">
Particle Simulation
</a>
</h3>
<p>
This project simulates particles in 3D with a few different types of physics systems.
</p>
</div>
</div>
<!-- Footer -->
<div class="footer">
<p>
<a href="https://github.com/The-Order-of-the-Simulation/The-Order-of-the-Simulation.github.io">The source code for this website is available on GitHub.</a>
</p>
</div>
</body>
</html>