-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (50 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IRPI - Regroupement de sites</title>
<style>
body {
font-family: Arial, sans-serif;
}
header {
text-align: center;
padding: 20px;
background-color: #f0f0f0;
}
section {
max-width: 800px;
margin: 20px auto;
}
.site-container {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.site {
margin: 10px;
text-align: center;
}
.site img {
max-width: 100%;
height: auto;
}
</style>
</head>
<body>
<header>
<img src="channels4_profile.jpg" alt="Description de l'image" width="200" height="100">
<h1>IRPI - Regroupement de sites</h1>
</header>
<section>
<div class="site-container">
<div class="site">
<h2>Site 1</h2>
<li><a href="découverte.html" target="_blank">découverte</a></li>
</div>
<!-- Ajoutez des blocs similaires pour chaque site jusqu'à 10 -->
</div>
</section>
</body>
</html>