-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (73 loc) · 1.85 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
---
layout: page
title: "Directory"
permalink: ./
---
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jesse Greenberg - github.io</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
}
header, .project, footer {
padding: 20px;
max-width: 800px;
margin: 20px auto;
background-color: #ffffff;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
h1, h2 {
color: #333;
}
.project-link {
display: inline-block;
margin-top: 10px;
padding: 10px 20px;
background-color: #007BFF;
color: #ffffff;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}
.project-link:hover {
background-color: #0056b3;
}
footer {
text-align: center;
}
</style>
</head>
<body>
<header>
<h1>Project Directory</h1>
</header>
<section class="project">
<h2>Latent Dance</h2>
<p></p>
<a href="https://jessegreenberg.github.io/latent-dance/" class="project-link">Latent Dance</a>
</section>
<section class="project">
<h2>Cathedral</h2>
<a href="https://jessegreenberg.github.io/cathedral/" class="project-link">Enter the Cathedral</a>
</section>
<section class="project">
<h2>Crypt</h2>
<a href="https://jessegreenberg.github.io/crypt/" class="project-link">Dance in the Crypt</a>
</section>
<section class="project">
<h2>TITAN</h2>
<a href="https://jessegreenberg.github.io/titan/" class="project-link">Explore TITAN</a>
</section>
<section class="project">
<h2>Christmas Cat</h2>
<a href="https://jessegreenberg.github.io/christmas-cat/" class="project-link">Play Christmas Cat</a>
</section>
</body>
</html>