-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (58 loc) · 1.68 KB
/
index.html
File metadata and controls
58 lines (58 loc) · 1.68 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
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Small projects</title>
</head>
<style>
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 24px;
color: #111;
padding: 2rem;
}
h1 {
margin-bottom: 1rem;
}
ul {
display: flex;
flex-direction: column;
gap: 0.25rem;
list-style: '❖';
}
a:first-child {
text-decoration: none;
margin-inline-start: 2rem;
}
</style>
<body>
<h1>Small Projects</h1>
<ul>
<li>
<a href="./landing/index.html">Landing Page</a>
(<a href="https://github.com/cyphersept/small-projects/tree/main/landing">Source</a>)
</li>
<li>
<a href="./etch/index.html">Etch a Sketch</a>
(<a href="https://github.com/cyphersept/small-projects/tree/main/etch">Source</a>)
</li>
<li>
<a href="./calculator/index.html">Calculator</a>
(<a href="https://github.com/cyphersept/small-projects/tree/main/calculator">Source</a>)
</li>
<li>
<a href="./rps/index.html">Rock Paper Scissors</a>
(<a href="https://github.com/cyphersept/small-projects/tree/main/rps">Source</a>)
</li>
<li>
<a href="./signup/index.html">Signup Page</a>
(<a href="https://github.com/cyphersept/small-projects/tree/main/signup">Source</a>)
</li>
</ul>
</body>
</html>