-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (37 loc) · 1.88 KB
/
index.html
File metadata and controls
38 lines (37 loc) · 1.88 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
<!DOCTYPE html>
<html lang="pt-br">
<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>Day 2</title>
<style>
*, *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing:border-box; }
html { -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; }
* { margin: 0; padding: 0; }
body { background: #eee; font-family: Arial, Helvetica, sans-serif; }
</style>
<link rel="stylesheet" type="text/css" href="./day-2.css">
</head>
<body>
<div class="card">
<div class="poster">
<img class="poster-image" src="./poster.jpg" alt="Coringa">
</div>
<div class="details">
<h2 class="details-title">Coringa</h2>
<h3 class="details-subtitle">Dirigido por <span class="details-subtitle-hl">Todd Phillips</span></h3>
<div class="casting">
<h4 class="casting-title">Elenco</h4>
<ul class="casting-list">
<li class="casting-item"><img class="casting-image" src="http://br.web.img3.acsta.net/c_162_216/pictures/18/07/26/19/03/0700120.jpg"></li>
<li class="casting-item"><img class="casting-image" src="http://br.web.img3.acsta.net/c_162_216/pictures/15/09/16/17/30/201281.jpg"></li>
<li class="casting-item"><img class="casting-image" src="http://br.web.img3.acsta.net/c_162_216/pictures/19/02/25/18/42/3297607.jpg"></li>
<li class="casting-item"><img class="casting-image" src="http://br.web.img3.acsta.net/c_162_216/medias/nmedia/18/92/87/44/20222686.jpg"></li>
<li class="casting-item"><img class="casting-image" src="http://br.web.img3.acsta.net/c_162_216/pictures/15/06/29/13/14/250948.jpg"></li>
</ul>
</div>
</div>
</div>
</body>
</html>