-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (47 loc) · 1.13 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
<!DOCTYPE html>
<html>
<head>
<title>Contenant</title>
<link rel="stylesheet" href="style.css">
<style>
body {
background-color: rgb(20, 214, 198);
}
img {
position: absolute;
max-width: 20%;
padding-left: 40%;
padding-top: 5%;
}
.squelette {
position: absolute;
padding-top: 14%;
padding-left: 40%;
}
.head {
z-index: 1;
padding-left: 62%;
}
.bod {
z-index: 1;
padding-left: 18%;
padding-top: 12%;
}
</style>
</head>
<body>
<header>
<nav class="topnav">
<a class="active" href="./index.html">Accueil</a>
<a href="./squelette.html">Balises principales</a>
<a href="./layout.html">Balises sémantiques</a>
</nav>
</header>
<main>
<img class="head" src="img/head.png" />
<img class="bod" src="img/body.png" />
<img src="img/vecteezy_empty-glass-jar-clipart-design-illustration_9305099_993.png" />
<img src="img/skeleton-png-14052.png" class="squelette" />
</main>
</body>
</html>