forked from COLTEC-DAW/E03-Galeria-de-Imagens
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (71 loc) · 2.51 KB
/
index.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>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Galeria de Filmes: Quentin Tarantino</title>
<link rel="stylesheet" href="css/master.css">
</head>
<body>
<div id="interface">
<header class="col col12">
<h1>Galeria do Tarantino</h1>
<h2>Galeria de alguns dos filmes de Quentin Tarantino</h2>
</header>
<div id="container" class="clearfix">
<div class="col col4">
<figure class="filme">
<img src="img/caes_de_aluguel.jpg" alt="">
<figcaption>
<p><b>Cães de Aluguel</b></p>
<p>1992</p>
</figcaption>
</figure>
</div>
<div class="col col4">
<figure class="filme">
<img src="img/pulp_fiction.jpg" alt="">
<figcaption>
<p><b>Pulp Fiction: Tempos de Violência</b></p>
<p>1994</p>
</figcaption>
</figure>
</div>
<div class="col col4">
<figure class="filme">
<img src="img/kill_bill.jpg" alt="">
<figcaption>
<p><b>Kill Bill: Volume 1</b></p>
<p>2003</p>
</figcaption>
</div>
<div class="col col4">
<figure class="filme">
<img src="img/bastardos_inglorios.jpg" alt="">
<figcaption>
<p><b>Bastardos Inglórios</b></p>
<p>2009</p>
</figcaption>
</div>
<div class="col col4">
<figure class="filme">
<img src="img/django_livre.jpg" alt="">
<figcaption>
<p><b>Django Livre</b></p>
<p>2012</p>
</figcaption>
</div>
<div class="col col4">
<figure class="filme">
<img src="img/os_oito_odiados.jpg" alt="">
<figcaption>
<p><b>Os Oito Odiados</b></p>
<p>2015</p>
</figcaption>
</figure>
</div>
</div>
</div>
</body>
</html>