-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (25 loc) · 826 Bytes
/
index.html
File metadata and controls
26 lines (25 loc) · 826 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Fix a Bug, make a Bug | LEAN-CODERS</title>
<style>
.cover {
position: fixed; /* Bild bleibt fixiert, auch wenn man scrollt */
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url("./splashimage.png"); /* Pfad zu deinem Bild */
background-size: cover; /* Skaliert das Bild, um den gesamten Bereich zu füllen */
background-position: center; /* Zentriert das Bild */
background-repeat: no-repeat; /* Verhindert Wiederholung des Bildes */
@media screen and (orientation: portrait) {
background-image: url("./splashimage-portrait.webp"); /* Pfad zu deinem Bild */
}
}
</style>
</head>
<body>
<div class="cover"></div>
</body>
</html>