-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
144 lines (116 loc) · 4.04 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<html>
<head>
<title>Spiderman - No Way Home</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit&display=swap" rel="stylesheet">
<meta charset="utf-8">
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="rodape.css" />
</head>
<body>
<header>
<!--center-->
<div class="center">
<div class="logo">
<img src="img/marvel_logo.png" width="100">
</div><!--logo-->
<!--menu-->
<div class="menu">
<a href="#">
Inicio
</a>
<a href="#">
Sobre
</a>
<a href="#">
Contato
</a>
<a class="btn-menu" href="#">
Comprar Ingresso
</a>
</div>
<!--menu-->
</div>
<!--center-->
</header>
<!------main------>>
<section class="main">
<div class="center">
<!--main_cta-->
<div class="main_cta">
<h2>Spiderman - No Way Home</h2>
<p>Conheça o multiverso</p>
<button>Vamos lá!</button>
</div>
<!--main_cta-->
<!--diferenciais-->
<div class="diferenciais">
<!--diferencial-single-->
<div class="diferencial-single">
<div class="icon_tobey">
<img src="img/icon_tobey.png" alt="icon_tobey" height="340" width="340">
</div>
<h2>Tobey Maguire</h2>
<p>Trilogia Sam Raimi</p>
<button>Escolher</button>
</div>
<!--diferencial-single-->
<!--diferencial-single-->
<div class="diferencial-single">
<div class="icon_andrew">
<img src="img/icon_andrew.png" alt="icon_andrew" height="340" width="340">
</div>
<h2>Andrew Garfield</h2>
<p>Duologia Mark Webb</p>
<button>Escolher</button>
</div>
<!--diferencial-single-->
<!--diferencial-single-->
<div class="diferencial-single">
<div class="icon_tom">
<img src="img/icon_tom.png" alt="icon_tom" height="340" width="340">
</div>
<h2>Tom Holland</h2>
<p>Trilogia Jon Watts</p>
<button>Escolher</button>
</div>
<!--diferencial-single-->
</div>
<!--diferenciais-->
</section>
<!------main------>>
<!------------------------------------------>>
<!------------------RODAPE------------------>>
<!------------------------------------------>>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css">
</head>
<body>
<div class="content">
</div>
<footer id="myFooter">
<div class="container">
<ul>
<li><a href="index.html">Informações da Empresa</a></li>
<li><a href="index.html">Termos de Serviço</a></li>
<li><a href="index.html">Formas de Pagamento</a></li>
</ul>
<p class="footer-copyright">© 2021 Copyright - Industrias Parker</p>
</div>
<div class="footer-social">
<a href="index.html" class="social-icons"><i class="fa fa-facebook"></i></a>
<a href="index.html" class="social-icons"><i class="fa fa-instagram"></i></a>
<a href="index.html" class="social-icons"><i class="fa fa-youtube"></i></a>
<a href="index.html" class="social-icons"><i class="fa fa-twitter"></i></a>
</div>
</footer>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!------------------------------------------>>
<!------------------RODAPE------------------>>
<!------------------------------------------>>
</body>
</html>