-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (82 loc) · 1.71 KB
/
Copy pathindex.html
File metadata and controls
94 lines (82 loc) · 1.71 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
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
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My projects</title>
<style>
body {
font-family: Arial, sans-serif;
background: #000000;
margin: 0;
padding: 40px;
}
h1 {
text-align: center;
color: #8c00ff;
margin-bottom: 10px;
}
p {
text-align: center;
color: #8c00ff;
margin-bottom: 30px;
}
.buttons {
text-align: center;
margin-bottom: 40px;
}
button {
padding: 10px 18px;
margin: 5px;
border: none;
border-radius: 6px;
background: #8c00ff;
color: white;
cursor: pointer;
font-size: 14px;
}
button:hover {
background: #8c00ff;
}
ul {
max-width: 600px;
margin: auto;
padding: 0;
list-style: none;
}
li {
background: white;
margin-bottom: 12px;
padding: 15px;
border-radius: 8px;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
a {
text-decoration: none;
color: #8c00ff;
font-weight: bold;
}
</style>
</head>
<body>
<h1>im ilikesn0w</h1>
<p>my projects</p>
<div class="buttons">
<button onclick="alert('i dont want to pay for the domain and hosting')">
About me
</button>
<button onclick="location.href='https://github.com/ilikesn0w'">
My GitHub
</button>
</div>
<ul>
<li>
<span>turdus_m3rula_gui</span>
<a href="https://github.com/ilikesn0w/turdus_m3rula_gui">Repo</a>
<a href="https://github.com/ilikesn0w/turdus_m3rula_gui/archive/refs/heads/main.zip">Download</a>
</li>
</ul>
</body>
</html>