-
Notifications
You must be signed in to change notification settings - Fork 0
/
chanel.html
117 lines (106 loc) · 4.65 KB
/
chanel.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="marcas.css">
<link rel="shortcut icon" href="favicon_io/favicon-32x32.png" type="image/x-icon">
<title>Chanel</title>
</head>
<body>
<a name="inicio"></a>
<header>
<h1>Chanel</h1>
</header>
<nav>
<a href="index.html">Página Inicial - Cosméticos</a>
<a href="l'oreal.html">L'Oréal Paris</a>
<a href="clinique.html">Clinique</a>
<a href="chanel.html">Chanel</a>
<a href="esteelauder.html">Estée Lauder</a>
<a href="lancome.html">Lâncome</a>
</nav>
<h2>Sobre a Empresa</h2>
<p class="empresa">Chanel é uma casa de moda francesa de luxo fundada em 1910 por Coco Chanel em Paris. A Chanel é especializada em pronto-a-vestir feminino, produtos de luxo e acessórios e licencia seu nome e marca à Luxottica para óculos. A Chanel é bem conhecida por seu perfume nº 5 e o "Terno Chanel". A Chanel é creditada por revolucionar a alta-costura e o pronto-a-vestir, substituindo silhuetas estruturadas e com espartilhos por roupas mais funcionais que as mulheres ainda acham lisonjeiras.</p>
<hr>
<h2>Veja os cosméticos dessa empresa</h2>
<main>
<div class="galeria">
<h4>CHANCE EAU TENDRE</h4>
<p>EAU DE PARFUM SPRAY</p>
<p class="centro">
<picture>
<img src="img/chanel/chanelchancerosa50ml300px.webp" alt="Produto Chance EAU Tendre Rosa da Chanel">
</picture>
<button onclick="clickChanelTendre()">Descrição do produto</button>
<p id="p1"></p>
</p>
</div>
<div class="galeria">
<h4>CHANCE EAU FRAÎCHE</h4>
<p>EAU DE PARFUM SPRAY</p>
<p class="centro">
<picture>
<img src="img/chanel/chanelchanceverde50ml300px.webp"alt="Produto Chance EAU Fraiche Verde da Chanel">
</picture>
<button onclick="clickChanelFraiche()">Descrição do produto</button>
<p id="p2"></p>
</p>
</div>
<div class="galeria">
<h4>CHANCE EAU VIVE</h4>
<p>EAU DE TOILETTE</p>
<p class="centro">
<picture>
<img src="img/chanel/chanelchancelaranja50ml300px.webp" alt="Produto Chance EAU Vive Laranja da Chanel">
</picture>
<button onclick="clickChanelVive()">Descrição do produto</button>
<p id="p3"></p>
</p>
</div>
<div class="galeria">
<h4>CHANCE</h4>
<p class="centro">EAU DE PARFUM VAPORIZADOR</p>
<p>
<picture>
<img src="img/chanel/chanelchanceamarelo50ml300px.webp" alt="Produto Chance Amarelo da Chanel">
</picture>
<button onclick="clickChanelChance()">Descrição do produto</button>
<p id="p4"></p>
</p>
</div>
<div class="galeria">
<h4>N° 5 CHANEL</h4>
<p>EAU DE PARFUM VAPORIZADOR</p>
<p class="centro"></p>
<p>
<picture>
<img src="img/chanel/chanelperf50ml300px.webp" alt="Produto N°5 Chanel">
</picture>
<button onclick="clickChanelN5()">Descrição do produto</button>
<p id="p5"></p>
</p>
</div>
<div class="galeria">
<h4>COCO MADEMOISELLE</h4>
<p>EAU DE PARFUM SPRAY</p>
<p class="centro"></p>
<p>
<picture>
<img src="img/chanel/chanelmadeimoselle50ml300px.webp" alt="Produto Coco MADEMOISELLE da Chanel">
</picture>
<button onclick="clickChanelCoco()">Descrição do produto</button>
<p id="p6"></p>
</p>
</div>
</main>
<footer>
<a href="#inicio">Início da página</a>
<p><strong>Contate-nos:</strong></p>
<p>Email: <a href="mailto:[email protected]">[email protected]</a> / <a href="mailto:">[email protected]</a></p>
<p>Github: <a href="https://github.com/gabrieladeandradecode" target="_blank">gabrieladeandradecode</a> / <a href="https://github.com/Luly0803" target="_blank">Luly0803</a></p>
<p><em>@Todos direitos de imagem reservados às marcas Chanel, Clinique, Estee Lauder, Lâncome e L'Oreal.</em></p>
</footer>
<script src="scripts.js"></script>
</body>
</html>