-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (34 loc) · 1.31 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Product Card</title>
<link href="https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@600&family=Lato&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<script src="./index.js" defer></script>
</head>
<body>
<main>
<div id="product">
<img src="./assets/img-sofa.png" alt="sofá rosa" class="img-sofa">
<img src="./assets/gif-sofa.gif" alt="" class="gif-sofa hide" >
<button class="active-360">
<img src="./assets/360.svg" alt="360">
</button>
<button class="close hide">
<img src="./assets/close.svg" alt="">
</button>
</div>
<div id="info">
<p class="code">CÓDIGO: 42404</p>
<h1 class="product-name">Sofá Margot II - Rosé</h1>
<h2 class="price">R$ 4.000 </h2>
<button class="buy">ADICIONAR À CESTA</button>
</div>
</main>
</body>
</html>