-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsite13.html
More file actions
149 lines (131 loc) · 4.09 KB
/
site13.html
File metadata and controls
149 lines (131 loc) · 4.09 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
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Protegendo a Lacoste</title>
<link rel="icon" href="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQvH3wzALBvBXl1B6TWm4L8n5cHkZjxqw7opQ&s"/>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
color: #333;
display: flex;
flex-direction: column;
align-items: center;
}
header {
background-color: #fff;
padding: 20px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
transition: background-color 0.3s;
}
.logo {
display: flex;
align-items: center;
}
.logo img {
height: 50px;
margin-right: 10px;
transition: transform 0.3s;
}
.logo img:hover {
transform: scale(1.1);
}
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, transform 0.3s;
}
.menu-list a:hover {
color: #007A33;
transform: translateY(-3px);
}
.content {
max-width: 800px;
padding: 40px;
text-align: center;
background-color: #fff;
margin: 20px auto;
border-radius: 10px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
position: relative;
}
h2 {
color: #007A33;
font-size: 2em;
margin-bottom: 20px;
}
p {
line-height: 1.6;
color: #666;
margin: 15px 0;
}
.footer {
background-color: #007A33;
color: white;
padding: 20px;
text-align: center;
width: 100%;
position: absolute;
bottom: 0;
}
.crocodile {
width: 100px;
position: absolute;
right: 20px;
bottom: -20px;
opacity: 0.1;
}
@media (max-width: 768px) {
.content {
padding: 20px;
}
}
</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="content">
<h2>Proteger a Lacoste e o seu Ecossistema</h2>
<p>Desde a sua criação, a Lacoste tem estado ativamente comprometida com a proteção da marca. Um compromisso incansável com clientes, colaboradores, parceiros e fornecedores.</p>
<p>Uma promessa inscrita no Código de Conduta e na carta de Responsabilidade Social dos Parceiros da Lacoste, assinada e respeitada por cada um dos fornecedores.</p>
<img class="crocodile" src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a3/Lacoste_crocodile_logo.svg/1200px-Lacoste_crocodile_logo.svg.png" alt="Crocodilo Lacoste">
</div>
<div class="footer">
© 2024 Lacoste. Todos os direitos reservados.
</div>
</body>
</html>