-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (28 loc) · 1.38 KB
/
index.html
File metadata and controls
36 lines (28 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="./main.css">
<link rel="icon" type="image/x-icon" href="./favicon.ico">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&display=swap" rel="stylesheet">
<title>My WebGL Projects!</title>
</head>
<body>
<div class="center">
<h1 id='htitle'>My WebGL Projects!</h1>
<h3><a href="SVGEditor/">SVG Editor</a></h3>
<h3><a href="CubeSubdivAnimation/">Subdividing Cube Animation</a></h3>
<h3><a href="OBJSceneRenderer/">.obj Scene Renderer</a></h3>
<h3><a href="RayTracer/">Ray Tracing Renderer</a></h3>
<p>Click through these projects above to view them in the browser!</p>
<p>To run any of these projects, simply <code>git clone https://github.com/mxgordon/WebGL-Projects.git</code>,
and nothing else is needed as long as you have a browser installed (I have only tested it for Chrome & Edge,
so others may or may not work).</p>
<br>
<p>All the source code is <a href="https://github.com/mxgordon/WebGL-Projects" target="_blank"
rel="noopener noreferrer">here</a> for those interested.</p>
</div>
</body>
</html>