-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome.html
74 lines (55 loc) · 1.18 KB
/
home.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
<!Doctype html>
<head>
<title>Header</title>
<meta name="description" content="Hidden menu options triggered by the menu button in the header">
<link rel="stylesheet" type="text/css" href="css/style.css">
<style type="text/css">
body {
background-color: #29ffff;
}
h3{
text-align: left;
font-size: 10px;
}
p{
background-image: -moz-linear-gradient(center bottom , rgb(245, 245, 245) 0%, rgb(252, 252, 252) 63%);
border-bottom: 1px solid white;
border-radius: 10px 10px 10px 10px;
color: gray;
font-family: meta;
height: 30px;
margin: 11px auto auto;
padding-left: 20px;
padding-right: 20px;
padding-top: 5px;
text-align: center;
width: 70%;
}
a
{text-decoration: none;
color: #000;}
</style>
</head>
<body>
<div id="logomain">
<img src="">
</div>
<div id="main">
<a href="index.html">
<p>4 anneaux</p>
</a>
<a href="index5.html">
<p>5 anneaux</p>
</a>
<a href="index6.html">
<p>6 anneaux</p>
</a>
<a href="#">
<p>About</p>
</a>
<a href="javascript:window.close()" >
<p>Quitter</p>
</a>
</div>
</body>
</html>