-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBBT.html
111 lines (103 loc) · 2.23 KB
/
BBT.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
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
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<meta charset="UTF-8">
<html>
<style type="text/css">
html{
background-color:#88C1D0;
}
h1{
font-size:2em;
font-family:"Courier";
color:black;
text-align:center;
}
h2{
text-align:center;
color:#27609F;
font-family:"Bahnschrift";
}
body ul
{
list-style-type:none;
display:flex;
justify-content:center;
}
li a{
text-decoration:none;
font-size:1.1em;
font-family:Verdana;
color:white;
margin-right:8px;
background-color:#FFCB4B;
padding:2px 6px 2px 6px;
border-radius:5px;
font-family:"Verdana";
font-weight:bold;
}
#underscore{
color:#27609F;
display:inline-block;
}
footer{
position:absolute;
bottom:10px;
}
footer ul{
list-style-type: square;
display:flex;
flex-direction:column;
}
footer li{
font-family:Helvetica;
font-weight:normal;
color:#285FA1;
font-size:1em;
}
footer{
font-family:Courier;
font-weight:bold;
color:black;
font-size:1.1em;;
}
img
{
display:block;
margin-left:auto;
margin-right:auto;
}
#Citation
{
text-align:center;
font-family:"Rockwell";
text-shadow: 1px 1px 2px pink;
}
</style>
<head>
<title>FIVE FINGERS +1</title>
</head>
<body>
<h1> Best Beautiful Team<div id="underscore">_</div></h1>
<ul>
<li><a href="BBT.html">ACCUEIL</a></li>
<li><a href="theo-petropoulos.html">THEO</a></li>
<li><a href="nabil-abdallah.html">NABIL</a></li>
<li><a href="olivier-puche.html">OLIVIER</a></li>
<li><a href="guillaume-plantevin.html">GUILLAUME</a></li>
<li><a href="keany-albertini.html">KEANY</a></li>
<li><a href="lionel-burraschi.html">LIONEL</a></li>
</ul>
<a href="mains.jpg"><img src="mains.jpg" height="420px"/></a>
<h2> FIVE FINGERS +1 </h2>
<p id="Citation">"Vous préférez pas un whisky d'abord ?"</p>
</body>
<footer>
Nous contacter :
<ul>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
</ul>
</footer>
</html>