-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathingresso.html
67 lines (60 loc) · 2.94 KB
/
ingresso.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
<!DOCTYPE html>
<html lang="pt-br">
<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">
<title>CodeChella - Ingresso</title>
<link rel="stylesheet" href="./style/style.css">
<link rel="stylesheet" href="./style/reset.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
</head>
<body>
<header class="cabecalho">
<section class="cabecalho__logo">
<div class="cabecalho__img">
<img src="./img/logo.png" href="index.html">
</div>
<div class="cabecalho__iconMenu">
<span class="material-symbols-outlined" id="botaoMenu"> menu </span>
</div>
</section>
<section class="cabecalho__menu">
<a class="cabecalho__menu__item" href="index.html">Home</a>
<a class="cabecalho__menu__item" href="experiencia.html">A experiência</a>
<a class="cabecalho__menu__item" href="setores.html">Mapa de Setores</a>
<a class="cabecalho__menu__item" href="informacoes.html">Informações</a>
<a class="cabecalho__menu__item" href="ingresso.html" style="text-decoration: underline;">Ingresso</a>
</section>
</header>
<main>
<div class="paginaInicial">
<img src="./setores/banner.png" class="paginaInicial__banner">
<!-- <img src="./img/bannerTablet.png" class="paginaInicial__bannerTablet">
<img src="./img/bannerCelular.png" class="paginaInicial__bannerCelular"> -->
<h1 class="paginaInicial__boasVindas">
Ingressos <br> #CodeChella2023!</h1>
</main>
<footer class="rodape__container">
<section class="redes">
<img src="./img/logo-rodape.png" class="logo-rodape">
<div class="rodape__texto">
<p class="rodape__texto__texto">Acesse nossas redes:</p>
<div class="img__redeSocial">
<img src="./img/instagram.png">
<img src="./img/twitch.png">
<img src="./img/twitter.png">
<img src="./img/whatsapp.png">
</div>
</div>
</section>
<section class="credito">
<div class="rodape__texto__credito">
<p>Desenvolvido por Alura. <br>
Projeto fictício sem fins comerciais.</p>
</div>
</section>
</footer>
</body>
</html>