-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (56 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Index</title>
</head>
<body>
<style>
@font-face{
font-family: 'HACKED';
src: url(Resources/Font/HACKED.ttf)
}
h1{
color: white;
text-align: center;
font-family: HACKED;
font-size: 6vh;
}
body{
background-color: black;
color: white;
}
li a {
color: white;
text-decoration: none;
transition: 0.7s;
font-family: monospace;
font-size: 3vh;
}
ul{
list-style-type: none;
}
#list{
display: flex;
justify-content: center;
align-items: center;
height: 80vh;
border-radius: 20px;
}
a:hover{
letter-spacing: 2px;
color: #00ff00;
}
</style>
<h1>Hello! Welcome to my projects</h1>
<div id="list">
<ul>
<li><a href="DrumKit/index.html">01. DrumKit</a></li><br>
<li><a href="KeyCode/index.html">02. KeyCode</a></li><br>
<li><a href="QRGenerator/index.html">03. QR Generator</a></li><br>
<li><a href="YouAre__YearsOld/index.html">04. You are ___ old</a></li>
</ul>
</div>
</body>
</html>