-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
109 lines (104 loc) · 2.77 KB
/
index.html
File metadata and controls
109 lines (104 loc) · 2.77 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Top 5 des meilleures actrices</title>
<link href='https://fonts.googleapis.com/css?family=Limelight' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Lobster' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<h1>Top 5 des meilleures actrices</h1>
</header>
<section id="main-menu">
<ul>
<li>
<div id="part1" class="images">
<div class="bw"></div>
<div class="color"></div>
</div>
<div class="description">
<h2>Scarlett
<br>Johansson</h2>
<h3>Ses meilleurs films</h3>
<p>Lucy</p>
<p>The Island</p>
<p>Lost In Translation</p>
</div>
</li>
<li>
<div id="part2" class="images">
<div class="bw"></div>
<div class="color"></div>
</div>
<div class="description">
<h2>Natalie
<br>Portman</h2>
<h3>Ses meilleurs films</h3>
<p>Black Swan</p>
<p>Star Wars</p>
<p>Leon</p>
</div>
</li>
<li>
<div id="part3" class="images">
<div class="bw"></div>
<div class="color"></div>
</div>
<div class="description">
<h2>Jessica
<br>Alba</h2>
<h3>Ses meilleurs films</h3>
<p>Awake</p>
<p>Sin City</p>
<p>Fantastic Four</p>
</div>
</li>
<li>
<div id="part4" class="images">
<div class="bw"></div>
<div class="color"></div>
</div>
<div class="description">
<h2>Rachel
<br>McAdams</h2>
<h3>Ses meilleurs films</h3>
<p>The Notebook</p>
<p>The Vow</p>
<p>The Time Traveler's Wife</p>
</div>
</li>
<li>
<div id="part5" class="images">
<div class="bw"></div>
<div class="color"></div>
</div>
<div class="description">
<h2>Marion
<br>Cotillard</h2>
<h3>Ses meilleurs films</h3>
<p>Jeux d'enfants</p>
<p>Les Petits Mouchoirs</p>
<p>Inception</p>
</div>
</li>
</ul>
</section>
<section id="buttons-menu">
<ul>
<li class="button">Scarlett
<br>Johansson</li>
<li class="button">Natalie
<br>Portman</li>
<li class="button">Jessica
<br>Alba</li>
<li class="button">Rachel
<br>McAdams</li>
<li class="button">Marion
<br>Cotillard</li>
</ul>
</section>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="script.js"></script>
</body>
</html>