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
|
html{
height: 100%;
}
body {
background-color: rgb(100, 100, 100);
position: relative;
height: 100%;
}
.Cadre {
background-color: rgb(50,50,50);
border-radius: 10px;
width:75%;
text-align:left;
margin:auto;
margin-top: 2%;
padding:1% 1% 1% 1%;
color:White;
}
.image {
width: 97%;
margin-top : 2%;
}
footer {
text-align:left;
position: absolute;
color:White;
left:0;
width: 99.5%;
margin-top:2%;
background-color: rgb(30,30,30);
border-radius:10px;
padding-left:1%;
}
.lien {
display: inline-block;
width: 17%;
height: 98%;
text-align: center;
padding: auto;
margin: 1% 1% 1% 1%;
background-color: rgb(30,30,30);
border-radius: 5px;
}
.lientp1 {
display: inline-block;
width: 30%;
height: 98%;
text-align: center;
padding: auto;
margin: 1% 1% 1% 1%;
background-color: rgb(30,30,30);
border-radius: 5px;
}
.lientp2 {
display: inline-block;
width: 30%;
height: 98%;
text-align: center;
padding: auto;
margin: 1% 1% 1% 1%;
background-color: rgb(30,30,30);
border-radius: 5px;
}
.lientp3 {
display: inline-block;
width: 47%;
height: 98%;
text-align: center;
padding: auto;
margin: 1% 1% 1% 1%;
background-color: rgb(30,30,30);
border-radius: 5px;
}
.lientp4 {
display: inline-block;
width: 47%;
height: 98%;
text-align: center;
padding: auto;
margin: 1% 1% 1% 1%;
background-color: rgb(30,30,30);
border-radius: 5px;
}
.lientp5 {
display: inline-block;
width: 30%;
height: 98%;
text-align: center;
padding: auto;
margin: 1% 1% 1% 1%;
background-color: rgb(30,30,30);
border-radius: 5px;
}
#titre {
background-color:rgb(80,80,80);
border-radius: 10px;
margin:auto;
padding:1% 1% 1% 1%;
text-align: center;
width:66%;
color: White;
text-decoration:underline;
}
|