-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (102 loc) · 2.68 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
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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hier sind die Arbeitsunterlagen.</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
margin-top: 69px;
background: linear-gradient(135deg, #ff7e5f, #feb47b); /* Gradient von Orange zu Rosa */
color: #333; /* Textfarbe an den Hintergrund anpassen */
}
.download-button {
background-color: #696969;
color: white;
padding: 16px 42px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 42px;
margin: 20px 2px;
cursor: pointer;
border: none;
border-radius: 4px;
}
.download-button:hover {
animation: blink 1.5s infinite;
}
@keyframes blink {
0% {
background-color: #4CAF50;
color: blue;
font-family: Arial, sans-serif;
}
20% {
background-color: #FF0000;
color: green;
font-family: "Times New Roman", sans-serif;
}
40% {
background-color: #0000FF;
color: red;
font-family: Wingdings, sans-serif;
}
60% {
background-color: #FFFF00;
color: black;
font-family: "Comic Sans MS", sans-serif;
}
80% {
background-color: #4CAF50;
color: white;
font-family: "Lucida Sans Typewriter", sans-serif;
100% {
background-color: #FF8800;
color: blue;
font-family: "Edwardian Script ITC", sans-serif;
}
}
}
.invisible-button {
background-color: transparent;
color: transparent;
border: none;
padding: 15px 32px;
cursor: pointer;
display: inline-block;
text-decoration: none;
font-size: 16px;
}
.invisible-button:focus {
outline: none;
}
.invisible-button {
background-color: transparent;
color: transparent;
border: none;
padding: 15px 32px;
cursor: pointer;
display: inline-block;
text-decoration: none;
font-size: 16px;
}
.invisible-button:focus {
outline: none;
}
</style>
</head>
<body>
<h1>Hier sind die Arbeitsunterlagen!!!</h1>
<a href="Arbeitsunterlagen.pdf" download="Arbeitsunterlagen" class="download-button">Download</a>
<h2></h2>
<a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ" target="_blank" class="invisible-button">Geheim!!!</a>
<a href="https://www.youtube.com/watch?v=0aZvBvXyx7M" target="_blank" class="invisible-button">Geheim!!!</a>
<a href="https://www.youtube.com/watch?v=Nm4vhWs8HTc" target="_blank" class="invisible-button">Geheim!!!</a>
<h2></h2>
<a href="help.html" class="download-button">Mehr</a>
<a href="bird.html" class="download-button">Important!</a>
</body>
</html>