-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (102 loc) · 3.55 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
<!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>Touch Store</title>
<script
src="https://kit.fontawesome.com/bc7de74478.js"
crossorigin="anonymous"
></script>
<script type="module" src="script/index.js"></script>
<script type="module" src="script/header.js" defer></script>
<link rel="stylesheet" href="styles/index.css" />
<link rel="stylesheet" href="styles/headerAndFooter.css" />
<link rel="stylesheet" href="styles/configs.css" />
<link rel="shortcut icon" href="assets/favicon.ico" type="image/x-icon" />
<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=Noto+Sans:wght@400;700&family=Roboto:wght@400;700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Lobster&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header>
<h1><a href="index.html">Touch Store</a></h1>
<form class="searchContainer">
<input placeholder="Procure algum produto..." type="search" />
<button title="Busca"><i class="fas fa-search"></i></button>
</form>
<a href="shopcart.html" title="Carrinho" class="iconCart">
<div class="cartQuantity">0</div>
<i class="fas fa-shopping-cart"></i>
</a>
</header>
<header class="phoneHeader">
<section>
<h1><a href="index.html">Touch Store</a></h1>
<a href="shopcart.html" title="Carrinho" class="iconCart">
<div class="cartQuantity">0</div>
<i class="fas fa-shopping-cart"></i>
</a>
</section>
<form class="searchContainer">
<input placeholder="Procure algum produto..." type="search" />
<button><i title="Busca" class="fas fa-search"></i></button>
</form>
</header>
<main>
<section class="slider">
<ul class="imgsSlider">
<img
src="assets/products/banners/banner-headphone.webp"
alt="Oferta! Fone de Ouvido 99 Reais à vista"
/>
<img
src="assets/products/banners/banner-pan.webp"
alt="Oferta! Jogo de panelas 9 vezes de R$19,99"
/>
</ul>
<button><i class="fas fa-angle-left"></i></button>
<button><i class="fas fa-angle-right"></i></button>
<ul class="indexes">
<li></li>
<li></li>
</ul>
</section>
<section class="ProductsList">
<h2 id="products">PRODUTOS EM PROMOÇÃO</h2>
<div class="paragrathWithLines">
<div class="line"></div>
<p>Confira todos os produtos em promoção desta semana!</p>
<div class="line"></div>
</div>
<section class="notFound">
<strong>:(</strong>
<p>
<!--Javascript-->
</p>
</section>
<ul class="products">
<!--Javascript-->
</ul>
</section>
</main>
<footer>
<nav>
<a target="_blank" rel="external" href="https://www.instagram.com/"
>INSTAGRAM</a
>
<a href="shopcart.html">CARRINHO</a>
<a href="index.html">INÍCIO</a>
</nav>
<p>Touch Store © 2021</p>
</footer>
</body>
</html>