-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
159 lines (138 loc) · 4.02 KB
/
index.html
File metadata and controls
159 lines (138 loc) · 4.02 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
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!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" />
<link rel="shortcut icon" href="/assets/" type="image/x-icon" />
<link rel="stylesheet" href="/css/style.css" />
<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=Abel&display=swap" rel="stylesheet">
<title>G-AMA Store</title>
</head>
<body>
<header>
<div id="logo">
<img class="logo" src="assets/logo.jpg" alt="logo"/>
</div>
<nav>
<li><a href="#banner">Home</a></li>
<li><a href="#products">Produtos</a></li>
<li><a href="#contact">Contato</a></li>
<li>
<a data-target="simpleModal_7" data-toggle="modal">Cadastre-se</a>
</li>
</nav>
</header>
<main>
<section id="banner">
<div><img class="banner" src="assets/banner.jpg" alt="Banner"></div>
</section>
<section id="products">
<div class="product-card" value="1">
<img src="/assets/Brawlhalla.jpg" alt="Brawlhalla" />
<h2>Brawlhalla</h2>
<ul>
<li>Estilo: Luta</li>
<li>Plataforma: Steam</li>
</ul>
<h3>R$ 150,00</h3>
<button id="Braw">Comprar</button>
</div>
<div class="product-card" value="2">
<img src="/assets/GrandChase.jpg" alt="Grand Chase" />
<h2>Grand Chase</h2>
<ul>
<li>Estilo: Aventura</li>
<li>Plataforma: Ios</li>
</ul>
<h3>R$ 200,00</h3>
<button id="Grand-Chase">Comprar</button>
</div>
<div class="product-card" value="3">
<img src="/assets/GuardianTales.jpg" alt="Guardian Tales" />
<h2>Guardian Tales</h2>
<ul>
<li>Estilo: ActionRPG</li>
<li>Plataforma: Ios</li>
</ul>
<h3>R$ 100,00</h3>
<button id="Guardian-Tales">Comprar</button>
</div>
</section>
</main>
<section id="simpleModal_7" class="modal">
<div class="modal-window">
<h3>Preencha os dados e crie sua conta</h3>
<form>
<label for="name">Nome Completo</label>
<input
type="text"
name="name"
id="name-input"
placeholder="Digite seu nome completo"
required
/>
<label for="cpf">CPF</label>
<input
type="text"
name="cpf"
id="cpf-input"
pattern="\d{3}\.\d{3}\.\d{3}-\d{2}"
\
title="Digite um CPF no formato: xxx.xxx.xxx-xx"
placeholder="Digite seu CPF no formato: xxx.xxx.xxx-xx"
required
/>
<label for="date-birth">Data de nascimento</label>
<input type="date" name="date-birth" id="datebirth-input" required />
<label for="email">E-mail</label>
<input
type="email"
name="email"
id="email-input"
placeholder="Digite seu e-mail"
required
/>
<label for="cep">CEP</label>
<input
type="text"
name="cep"
id="cep-input"
pattern="\d{5}\-\d{3}"
\
title="Digite um CEP no formato: xxxxx-xxx"
placeholder="Digite seu CEP no formato: xxxxx-xxx"
required
/>
<label for="address">Endereço Completo</label>
<input
type="text"
name="address"
id="adrress-input"
placeholder="Insira seu endereço completo, incluindo complementos"
title="Insira seu endereço completo, incluindo complementos"
required
/>
<label for="password">Insira uma senha</label>
<input
type="password"
name="password"
id="password-input"
placeholder="Digite uma senha"
required
/>
</form>
<div id="buttons-modal">
<button class="btn-modal" id="btn-submit">Cadastrar</button>
<button class="btn-modal" data-dismiss="modal">Fechar</button>
</div>
</div>
</section>
<script src="/js/storeEmail.js"></script>
<script src="/js/addProduct.js"></script>
<script src="/js/modal.js"></script>
<script src="/js/form.js"></script>
</body>
</html>