-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsite2.html
More file actions
132 lines (126 loc) · 4.17 KB
/
site2.html
File metadata and controls
132 lines (126 loc) · 4.17 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Catálogo</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;
}
.galeria {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-top: 20px;
}
.imagem {
margin: 10px;
border: 2px solid #ddd;
border-radius: 5px;
overflow: hidden;
width: 200px;
text-align: center;
transition: transform 0.3s, box-shadow 0.3s;
}
.imagem:hover {
transform: scale(1.05);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.imagem img {
width: 100%;
height: auto;
display: block;
}
.preco {
margin-top: 10px;
font-size: 16px;
font-weight: bold;
color: #333;
}
</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="site13.html">Grupo Lacoste</a></li>
<li><a href="site12.html">Quem Somos?</a></li>
</ul>
</nav>
</header>
<div class="galeria">
<div class="imagem">
<a href="site4.html">
<img src="https://imagesa1.lacoste.com/dw/image/v2/BCWL_PRD/on/demandware.static/-/Sites-master/default/dw3046ec75/TH6709_031_20.jpg?imwidth=450&impolicy=pctp" alt="Imagem 1">
<div class="preco">R$ 369,00</div></a>
</div>
<div class="imagem">
<a href="site5.html">
<img src="https://imagesa1.lacoste.com/dw/image/v2/BCWL_PRD/on/demandware.static/-/Sites-master/default/dw28eb24a1/TH6709_001_20.jpg?imwidth=450&impolicy=pctp" alt="Imagem 2">
<div class="preco">R$ 369,00</div></a>
</div>
<div class="imagem">
<a href="site6.html">
<img src="https://imagesa1.lacoste.com/dw/image/v2/BCWL_PRD/on/demandware.static/-/Sites-master/default/dw76acc772/TH6709_166_20.jpg?imwidth=450&impolicy=pctp" alt="Imagem 3">
<div class="preco">R$ 369,00</div></a>
</div>
<div class="imagem">
<a href="site7.html">
<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="Imagem 4">
<div class="preco">R$ 369,00</div></a>
</div>
</div>
</body>
</html>