-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsite7.html
More file actions
137 lines (132 loc) · 3.98 KB
/
site7.html
File metadata and controls
137 lines (132 loc) · 3.98 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Comprar Camisa - Lacoste</title>
<link rel="icon" href="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQvH3wzALBvBXl1B6TWm4L8n5cHkZjxqw7opQ&s"/>
<style>
body {
display: flex;
flex-direction: column;
align-items: center;
margin: 0;
padding: 0;
background-color: #f5f5f5;
font-family: Arial, sans-serif;
}
header {
background-color: #fff;
padding: 20px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
}
.logo img {
height: 50px;
margin-right: 10px;
}
nav {
flex-grow: 1;
text-align: right;
}
.menu-list {
list-style: none;
padding: 0;
margin: 0;
}
.menu-list li {
display: inline;
margin-left: 20px;
}
.menu-list a {
text-decoration: none;
color: #333;
font-weight: bold;
transition: color 0.3s;
}
.menu-list a:hover {
color: #007bff;
}
.produto {
background: white;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
margin-top: 20px;
padding: 20px;
width: 300px;
text-align: center;
}
.produto img {
width: 100%;
height: auto;
border-radius: 10px;
}
.preco {
margin-top: 10px;
font-size: 24px;
font-weight: bold;
color: green;
}
.descricao {
margin: 10px 0;
font-size: 16px;
color: #333;
}
.tamanho {
margin: 10px 0;
}
.button {
background-color: #007A33;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
text-decoration: none;
transition: background-color 0.3s;
}
.button:hover {
background-color: #005f26;
}
</style>
</head>
<body>
<header>
<div class="logo">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR2-cYepfFqUopZQv15zliE0L6ewZDiZhC3p967siD-6ZD0oueJ7oeChcuP6QGeFPfEpCQ&usqp=CAU" alt="Lacoste Logo">
<h1 style="display:none;">Lacoste Brasil</h1>
</div>
<nav>
<ul class="menu-list">
<li><a href="siteoriginal.html">Home</a></li>
<li><a href="">Grupo Lacoste</a></li>
<li><a href="">Quem Somos?</a></li>
</ul>
</nav>
</header>
<div class="produto">
<img src="https://imagesa1.lacoste.com/dw/image/v2/BCWL_PRD/on/demandware.static/-/Sites-master/default/dw6259b35f/TH1415_IJZ_20.jpg?imwidth=615&impolicy=pctp" alt="Camiseta Clássica Polo">
<h2>Camiseta Clássica </h2>
<div class="descricao">A camiseta clássica da Lacoste, confeccionada em algodão pique, perfeita para qualquer ocasião.</div>
<div class="tamanho">
<label for="tamanho">Tamanho:</label>
<select id="tamanho">
<option value="P">P</option>
<option value="M">M</option>
<option value="G">G</option>
<option value="GG">GG</option>
</select>
</div>
<div class="preco">R$ 369,00</div>
</br></br>
<a href="site2.html" class="button">Adicionar ao Carrinho</a>
</div>
</body>
</html>