-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (70 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<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="stylesheet" href="./Assets/Style/style.css" />
<title>Bwlgari - Jóias</title>
</head>
<body>
<header>
<h1>B w l g a r i</h1>
<nav id="type"></nav>
<nav id="tags"></nav>
</header>
<main>
<form id="mobile-search">
<div>
<input
type="text"
name="search"
id="mobile-search-bar"
placeholder="Pesquisar..."
/>
<button id="mobile-search-button" type="button">
<span></span><i class="fa-solid fa-magnifying-glass"></i>
</button>
</div>
<small>← para ver as peças →</small>
</form>
<section id="display"></section>
<aside>
<form>
<input
type="text"
name="search"
id="search-bar"
placeholder="Pesquisar..."
/>
<button id="search-button" type="button">
<span></span><i class="fa-solid fa-magnifying-glass"></i>
</button>
</form>
<section id="cart">
<h2>S H O P P I N G - B A G</h2>
<div id="cart-items"></div>
<div id="summary" class="clear"></div>
</section>
<section id="wish-list" class="clear">
<h2>W I S H - L I S T</h2>
<div id="wish-items">
<div class="wish-card">
<img src="./Assets/Img/SP-OR-SC-01.png" alt="serpenti-pulseira" />
<div>
<h5>Serpenti Pulseira</h5>
</div>
<button><i class="fa-solid fa-xmark"></i></button>
</div>
</div>
<button id="wish-button">Adicionar ao Carrinho</button>
</section>
</aside>
</main>
<script type="module" src="./Assets/Script/main.js"></script>
<script
src="https://kit.fontawesome.com/8fa2904e7b.js"
crossorigin="anonymous"
></script>
</body>
</html>