-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (54 loc) · 1.67 KB
/
Copy pathindex.html
File metadata and controls
55 lines (54 loc) · 1.67 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
<html lang="en">
<head>
<!-- Redirects to a different page -->
<!-- <meta http-equiv="Refresh" content="0; url='CSC160_FinalProject/index.html" /> -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="main.css" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<title>Eli Gooch | Projects</title>
</head>
<body>
<div className="container mx-auto">
<h2 class="absolute ml-5 mt-5 float-left">
<a class="websiteLink" href="https://www.eligooch.com/">Eli Gooch</a>
</h2>
<br />
<!-- Projects -->
<div
class="container-fluid projects"
id="projects"
className="grid md:grid-cols-2 lg:grid-cols-3 gap-8"
>
<h1 class="float-none text-4xl">Projects</h1>
<ul>
<li>
<a class="flex-none" href="CSC160_FinalProject/index.html"
>CSC 160 Final Project</a
>
</li>
<li>
<a href="Blog/index.html">Blog</a>
</li>
<li>
<a href="react_blog/public/index.html">React Blog</a>
</li>
<li>
<a href="3D-Engine/index.html">3D Engine</a>
</li>
<li>
<a href="Web-API-Project/index.html">Web API</a>
</li>
<li>
<a href="TheGameOfLife/index.html">The Game of Life</a>
</li>
<li>
<a href="etrade-data/index.html">E-Trade Data Visualization</a>
</li>
<li>
<a href="quizbowl.io/quizbowl-io/index.html">Quizbowl.io</a>
</li>
</ul>
</div>
</div>
</body>
</html>