-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprojekte.html
More file actions
67 lines (62 loc) · 1.8 KB
/
projekte.html
File metadata and controls
67 lines (62 loc) · 1.8 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Leon | Projekte</title>
<style>
body {
background-color: black;
color: white;
font-family: 'Courier New', monospace;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
}
.projects-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
flex-grow: 1;
width: 100%;
max-width: 800px;
padding: 20px;
}
.project-button {
padding: 20px 40px;
font-size: 24px;
background-color: #222;
color: white;
text-decoration: none;
border-radius: 10px;
border: 2px solid #5d7e3b;
transition: 0.3s;
margin: 15px 0;
width: 100%;
text-align: center;
box-sizing: border-box;
}
.project-button:hover {
background-color: #5d7e3b;
color: black;
}
h1 {
color: #5d7e3b;
font-size: 100px;
margin-bottom: 40px;
}
</style>
</head>
<body>
<div class="projects-container">
<h1>Projekte</h1>
<a href="blocksmp.html" class="project-button" target="_blank">Owner vom BlockSMP Minecraft Server</a>
<a href="index.html" class="project-button" target="_blank">Owner von dieser Webseite</a>
<a href="https://norisk.gg/" class="project-button" target="_blank">BugHunter @ NoriskClient</a>
<a href="moonbot.html" class="project-button" target="_blank">Owner vom MoonBot</a>
</div>
</body>
</html>