-
Notifications
You must be signed in to change notification settings - Fork 0
/
trainspotting.html
60 lines (58 loc) · 1.91 KB
/
trainspotting.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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/trainspotting.css">
<title>Trainspotting</title>
</head>
<body>
<div class="menu">
<a class="accueil" href="./index.html">Accueil</a>
<a href="./air.html"><img class="air" src="./images/air.webp" alt=""></a>
<a href="./lost-highway.html"><img class="lost-highway" src="./images/lost_highway.webp" alt=""></a>
<a href="./dub.html"><img class="trainspotting" src="./images/asian_dub_foundation.webp" alt=""></a>
</div>
<div class="album">
<div class="contour"></div>
<h2>MUSIC FROM THE MOTION PICTURE featuring:</h2>
<ul class="lineup">
<li>Damon Albarn</li>
<li>Bedrock</li>
<li>Blur</li>
<li>Elastica</li>
<li>Brian Eno</li>
<li>Leftfield</li>
<li>New Order</li>
<li>Iggy Pop</li>
<li>Primal Scream</li>
<li>Pulp</li>
<li>Lou Reed</li>
<li>Sleeper</li>
<li>Underworld</li>
</ul>
<h1>Trainspotting</h1>
<div class="cast-wrapper" style="--nb: 0;">
<div class="cast begbie">
<span>Begbie</span>
</div>
</div>
<div class="cast-wrapper" style="--nb: 1;">
<div class="cast sick-boy">
<span>Sick Boy</span>
</div>
</div>
<div class="cast-wrapper" style="--nb: 2;">
<div class="cast spud">
<span>Spud</span>
</div>
</div>
<div class="cast-wrapper" style="--nb: 3;">
<div class="cast diane">
<span>Diane</span>
</div>
</div>
</div>
</body>
</html>