-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
125 lines (119 loc) · 4.08 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
<!DOCTYPE html>
<html lang="PT-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alura Geek</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<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=Montserrat:wght@300;400;700&family=Raleway:wght@300;400;500;600;700&display=swap" rel="stylesheet">
</head>
<body>
<header class="header container">
<div class="headerLeft">
<div class="logoAlura">
<a href="#"><img src="assets/logo.png" alt=""></a>
</div>
<div class="searchBox">
<input type="text" placeholder="O que deseja encontrar?" class="search">
<a href="#">
<img src="assets/lupa.svg" alt="Lupa" class="lupa">
</a>
</div>
</div>
<a href="login.html" class="btnLogin">Login</a>
</header>
<main class="backgroundImg">
<section class="promocao container">
<h1 class="promocaoTitulo">Dezembro Promocional</h1>
<span class="promocaoDescricao">Produtos selecionados com 33% de desconto</span>
<a href="" class="promocaoConsoles">Ver Consoles</a>
</section>
</main>
<section id="starWars" class="section-star-wars container">
<div class="titulo">
<h3>Star Wars</h3>
<a href="login.html">
Ver tudo
<img src="assets/arrow_back_black_24dp 1.svg">
</a>
</div>
<ul class="produtos"> </ul>
</section>
<section id="consoles" class="section-consoles container">
<div class="titulo">
<h3>Consoles</h3>
<a href="login.html">
Ver tudo
<img src="assets/arrow_back_black_24dp 1.svg">
</a>
</div>
<ul class="produtos"> </ul>
</section>
<section id="diversos" class="section-diversos container">
<div class="titulo">
<h3>Diversos</h3>
<a href="login.html">
Ver tudo
<img src="assets/arrow_back_black_24dp 1.svg">
</a>
</div>
<ul class="produtos"></ul>
</section>
<footer>
<div class="footerContainer">
<div class="footerAjusta">
<div class="footerLeft">
<img src="assets/logo.png" alt="Logo Alura Geek">
<nav>
<ul>
<li><a href="">Quem somos nós</a></li>
<li><a href="">Política de privacidade</a></li>
<li><a href="">Programa fidelidade</a></li>
<li><a href="">Nossas lojas</a></li>
<li><a href="">Quero ser franqueado</a></li>
<li><a href="">Anuncie aqui</a></li>
</ul>
</nav>
</div>
<form class="footerForm" onsubmit="return validateForm()">
<span>Fale conosco</span>
<div class="inputName">
<input class="inputRequired" name="name" required>
<label>Nome</label>
</div>
<div class="inputArea">
<div class="divArea">
<textarea class="areaRequired" name="message" required></textarea>
<label>Escreva sua mensagem</label>
</div>
</div>
<span id="errorMsg" style="display: none; color: red;"></span>
<span id="sucessMsg" style="display: none; color: green;"></span>
<button class="botao-footer" type="submit">Enviar Mensagem</button>
</form>
</div>
</div>
<div class="creditosDesenvolvedor">
<span>
Desenvolvido por Roberto Gabriel
</span>
<div class="icon">
<span>
2023
</span>
<a href="https://github.com/RobertoGabr" target="_blank">
<img src="assets/github.png" class="github">
</a>
</div>
</div>
</footer>
<script src="js/footer.js"></script>
<script type="module" src="services/produtosServices.js"></script>
<script type="module" src="controllers/produtosControllers.js"></script>
</body>
</html>