-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (78 loc) · 3.85 KB
/
index.html
File metadata and controls
102 lines (78 loc) · 3.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<header>
<!--logo inicio-->
<div id=logo-p>
<img src="imagens/footwear.png" alt="logo-pequena"> <h2><a>Shoe</a> </h2>
</div>
<!--menu de navegaçao-->
<nav class="menu">
<ul>
<li><a href="#">HOME</a></li>
<li><a href="#">ABOLT US</a></li>
<li><a href="#">SHOP</a></li>
<li><a href="#">CONTACT</a></li>
<li><a href="#"><img src="imagens/search.png" alt="search"></a></li>
</ul>
</nav>
</header>
<main>
<!--efeitos de background-->
<div class="circulo-1" class="circulo-g" style="z-index:unset ;"><a></a></div>
<div class="circulo-2" class="circulo-g" style="z-index:unset ;"><a></a></div>
<div class="circulo-3" class="circulo-g" style="z-index:unset ;"><a></a></div>
<div class="circulo-4" class="circulo-g" style="z-index:unset ;"><a></a></div>
<div class="circulo-5" class="circulo-g" style="z-index:unset ;"><a></a></div>
<div class="circulo-6" class="circulo-g" style="z-index:unset ;"><a></a></div>
<!--texto banner-->
<article class="banner">
<div class="texto-baner">
<h1>Are you ready to <br>
<strong>lead the way</strong></h1>
</div>
<div class="texto-baner-2">
<p>Mauris porta lectus nulla, non dignissim dolor <br> et. Sed mi tortor, aliquam eget <br> congue a, faucibus sed est.</p>
<a href="#" ><button class="buy">Buy Now ></button></a>
</div>
<!--inicio carrosel -->
<section class="carrosel">
<!--botoes de navegaçao -->
<div id="container">
<input type="radio" id="foto1" name="grupo" checked>
<label for="foto1"><img src="imagens/tenis-rosa-p.png" alt="tenis-rosa-p" > </label>
<input type="radio" id="foto2" name="grupo">
<label for="foto2"><img src="imagens/Blue.png" alt="tenis-rosa-p" width="575px"> </label>
<input type="radio" id="foto3" name="grupo">
<label for="foto3"><img src="imagens/Yellow.png" alt="tenis-rosa-p"> </label>
<!--slides principal caixa-->
<div class="principal">
<!--caixa de itens em exposiçao-->
<div class="slide">
<p class="valor1">Mauris porta<br>
R$322,01</p>
<img class="fotos-p" src="imagens/tenis-rosa.png" alt="foto1">
<p class="valor2">Mauris porta<br>
R$322,02</p>
<img class="fotos-p" src="imagens/tenis-rosa.png" alt="foto2">
<p class="valor3">Mauris porta<br>
R$322,03</p>
<img class="fotos-p" src="imagens/tenis-rosa.png" alt="foto3">
</div>
</div>
</div>
<!--fim carrosel-->
</section>
</article>
</main>
</body>
</html>