-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct-details.html
47 lines (43 loc) · 1.6 KB
/
product-details.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/details.css">
<script src="src/views/productDetails.js" defer></script>
<script src="src/Store.js" defer></script>
<script src="src/Cart.js" defer></script>
<script src="src/Catalog.js" defer></script>
<script src="src/Product.js" defer></script>
<script src="js/app.js" defer></script>
<title>Tina Showroom!</title>
</head>
<body>
<header class="flex--center">
<nav>
<a href="index.html">
<img src="img/tina-logo.png" alt="logo Tina!" class="logo">
</a>
</nav>
</header>
//TODO: hacer la vista de detalle de producto.
<main class="padding-10">
<section id="" name="" class="flex--conteiner ">
<!--Add with JS-->
</section>
</main>
<footer class="d-flex">
<a href="https://g.page/tina-showroom?share" target="_blank" class="d-flex container">
<img src="img/favicon-map.png" alt="" class="icon-foot">
</a>
<a href="https://www.instagram.com/tinashowroomsv/" target="_blank" class="d-flex container">
<img src="img/favicon-instagram.png" alt="" class="icon-foot">
</a>
<a href="https://wa.me/message/UJAU6C64D6KXA1" target="_blank" class="d-flex container">
<img src="img/favicon-whatsap.png" alt="" class="icon-foot">
</a>
</footer>
</body>
</html>