-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
121 lines (92 loc) · 4.21 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
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
112
113
114
115
116
117
118
119
120
121
<!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>Joker</title>
<!-- CSS -->
<link href="public/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="public/css/estilo.css">
<link rel="stylesheet" href="fontawesome-free-5.11.2-web/css/fontawesome.css">
<link rel="stylesheet" href="fontawesome-free-5.11.2-web/css/brands.css">
<link rel="stylesheet" href="fontawesome-free-5.11.2-web/css/solid.css">
<style type="text/css">
body {
background-image: url('img/img4.jpg');
background-position: center top;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark fixed-top" style="background-color: black;">
<a href="index.html" class="navbar-brand pl-5">Joker</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#menu" aria-controls="menu"
aria-expanded="false" aria-label="Toggle Navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="menu">
<ul class="navbar-nav ml-auto">
<li class="nav-item active px-5 py-4">
<a class="nav-link" href="#">Início
<span class="sr-only">Início</span>
</a>
</li>
<li class="nav-item px-5 py-4">
<a href="elenco.html" class="nav-link">Elenco</a>
</li>
<li class="nav-item px-5 py-4">
<a href="enredo.html" class="nav-link">Enredo</a>
</li>
</ul>
</div>
</nav>
<div style="margin-top: 200px;">
</div>
<div class="container-fluid">
<div class="row">
<div class="col-4 ml-5 pl-5">
<h1 class="display-1 text-light">
The New King of Gotham
</h1>
<p class="lead text-light mt-5" style="font-size: 1.3em;">
O comediante falido Arthur Fleck encontra violentos bandidos pelas ruas de Gotham City.
Desconsiderado pela sociedade, Fleck começa a ficar louco e se transforma no criminoso conhecido
como Coringa.
</p>
<div class="mt-5">
<a href="#" class="btn btn btn-outline-danger">Assistir Agora ▸</a>
</div>
</div>
<div class="col">
</div>
<div class="col-md-3 mr-5 pr-5 mt-4">
<h3 class="text-light">★★★★★</h3>
<p class="text-light lead" style="font-size: 1.2em;">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Saepe magni explicabo hic. Quasi hic, quis
dolores itaque in qui, officia quo tempora voluptates dolore dolor a! Mollitia placeat iure iste!
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quaerat qui quos nihil quibusdam quod!
</p>
<h3 class="mt-5 pt-5 text-light">★★★★<a class="text-secondary">★</a></h3>
<p class="text-light lead" style="font-size: 1.2em;">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Saepe magni explicabo hic. Quasi hic, quis
dolores itaque in qui, officia quo tempora voluptates dolore dolor a! Mollitia placeat iure iste!
Lorem ipsum dolor sit amet consectetur adipisicing elit. Molestiae numquam repellat itaque vel
dolorem!
</p>
</div>
</div>
</div>
<div class="absoluto">
<i class="fas fa-search"></i>
</div>
<footer>
<!-- JS-->
<script src="public/js/jquery.min.js.js"></script>
<script src="public/js/bootstrap.bundle.min.js"></script>
</footer>
</body>
</html>