-
Notifications
You must be signed in to change notification settings - Fork 0
/
watch-product.html
69 lines (62 loc) · 3.05 KB
/
watch-product.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
<!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="shortcut icon" href="assets/img/yshop_ico.png">
<title>YshopOney</title>
<link rel="stylesheet" href="assets/css/resetearvalores.css">
<link rel="stylesheet" href="assets/css/base.css">
<link rel="stylesheet" href="assets/css/menu/menu.css">
<link rel="stylesheet" href="assets/css/banner/banner.css">
<link rel="stylesheet" href="assets/css/details/details.css">
<link rel="stylesheet" href="assets/css/details/related.css">
<link rel="stylesheet" href="assets/css/publicidad/publicidad.css">
<link rel="stylesheet" href="assets/css/contact/contact.css">
<link rel="stylesheet" href="assets/css/footer/footer.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css" integrity="sha512-1sCRPdkRXhBV2PBLUdRb4tMg1w2YPf37qatUFeS7zlBy7jJI8Lf4VHwWfZZfpXtYSLy85pkm9GaYVYMfw5BC1A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<header>
<div class="color"></div>
<div class="menu__container__principal">
<div class="menu__container__logo">
<a href="index.html" class="menu__link"><img src="assets/img/logo_yso.png" alt="" class="menu__logo"></a>
</div>
<div class="menu__container__searcher">
<input type="text" class="menu__searcher" placeholder=" ¿Qué desea buscar?">
<button class="menu__btn__searcher"><span class="material-symbols-outlined">search</span></button>
</div>
<div class="menu__container__btn">
<button class="menu__btn__login" data-login><spam class="menu__spam__login">Login</spam></button>
</div>
</div>
<div class="color"></div>
<section class="details-section">
<div class="details-container" data-details>
</div>
</section>
<section class="related__section">
<div class="related__container__title">
<h3 class="related__title">Productos relacionados</h3>
</div>
<div class="related__container" data-related>
</div>
</section>
<section class="contact__section">
<div class="contact__container" data-contact>
</div>
</section>
<footer class="footer">
<div class="footer__container">
<h4 class="footer__text">Developer by Rita Chacon Oney - 2023</h4>
</div>
</footer>
<script src="js/section-contact.js"></script>
<script src="js/to-login.js"></script>
<script type="module" src="controller/watch.controller.js"></script>
<script src="js/validaciones.js"></script>
</body>
</html>