forked from t4styl/t4styl.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (47 loc) · 1.6 KB
/
index.html
File metadata and controls
48 lines (47 loc) · 1.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Project Hub</title>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
text-align: center;
margin: 20px;
background-color: #222222;
color: #b0b0b0;
}
h1 {
color: #ffffff;
margin-bottom: 20px
}
p {
max-width: 600px;
margin: 0 auto 30px auto;
line-height: 1.5;
}
.button {
display: inline-block;
margin: 10px;
padding: 15px 30px;
font-size: 16px;
color: #d8d8d8;
background-color: #3a1564;
text-decoration: none;
border-radius: 5px;
trainsition: opacity 0.2s ease-in-out;
}
.button:hover {
opacity: 0.8;
}
</style>
</head>
<body>
<h1>Project Hub</h1>
<p>Welcome to by projects folder, everything I've made here is free to use (as in use it on your browser, not steal and pass it off as your own)</p>
<a href="/hivemind" class="button">HiveMind</a>
<a href="/my-website" class="button">An epic website I made</a>
<a href="/base64-encoder-decoder" class="button">Base64 Encoder/Decoder</a>
</body>
</html>