-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
125 lines (114 loc) · 3.37 KB
/
index.html
File metadata and controls
125 lines (114 loc) · 3.37 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Leon | Portfolio</title>
<style>
body {
background-color: black;
color: white;
font-family: 'Courier New', monospace;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.login-btn {
position: absolute;
top: 20px;
right: 20px;
padding: 10px 20px;
font-size: 16px;
background-color: #222;
color: white;
text-decoration: none;
border-radius: 10px;
border: 2px solid #5d7e3b;
transition: 0.3s;
font-family: monospace;
}
.login-btn:hover {
background-color: #5d7e3b;
color: black;
}
h1, h2 {
font-size: 80px;
font-weight: bold;
text-align: left;
width: 100%;
max-width: 1200px;
margin: 10px 20px;
font-family: monospace;
}
h2 span {
color: #5d7e3b;
}
h3 {
font-size: 24px;
font-weight: normal;
text-align: left; /* Änderung hier */
font-family: monospace;
color: #ccc;
margin-top: 50px;
max-width: 1200px; /* Gleiche max-width wie h1 und h2 */
margin-left: 1px; /* Gleicher margin-left wie h1 und h2 */
margin-right: 20px; /* Füge margin-right hinzu, um die Zentrierung zu unterstützen */
}
.button-container {
margin-top: 40px;
display: flex;
gap: 20px;
flex-wrap: wrap;
justify-content: center;
}
.button {
padding: 15px 25px;
font-size: 20px;
background-color: #222;
color: white;
text-decoration: none;
border-radius: 10px;
border: 2px solid #5d7e3b;
transition: 0.3s;
font-family: monospace;
}
.button:hover {
background-color: #5d7e3b;
color: black;
}
.emoji {
font-size: 70px;
margin-left: 20px;
}
</style>
</head>
<body>
<a href="login.html" class="login-btn">Login</a>
<h1></h1>
<h1></h1>
<h1></h1>
<h1></h1>
<h1></h1>
<h1></h1>
<h1></h1>
<h1></h1>
<h1></h1>
<h1></h1>
<h1></h1>
<h1>𝙷𝚊𝚕𝚕𝚘<span class="emoji">👋</span></h1>
<h2>𝙸𝚌𝚑 𝚋𝚒𝚗 <span>𝙻𝚎𝚘𝚗</span>.</h2>
<h3>Ich bin ein Developer und Minecraft Streamer (ich versuche es zummindest) aus Deutschland.
Ich verfüge über mehr als 2 Jahre Erfahrung HTML, PaperMC und Velocity.
<br>Zu meinen Projekten gehören ein Minecraft Server, Webseiten und mehr.
<br>Ich versuche außerdem Java zu lernen...
</h3>
<div class="button-container">
<a href="projekte.html" class="button" target="_blank">Projekte</a>
<a href="https://github.com/SurvivalModeeee" class="button" target="_blank">GitHub</a>
<a href="https://discordapp.com/users/1096124677434376233" class="button" target="_blank">Discord</a>
<a href="https://www.twitch.tv/survivalmodee" class="button" target="_blank">Twitch</a>
</div>
</body>
</html>