-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch_product.html
138 lines (113 loc) · 5.74 KB
/
search_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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alura Geek</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/hover-min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/header/nav.css">
<link rel="stylesheet" href="css/header/nav_search.css">
<link rel="stylesheet" href="css/header/nav_login.css">
<link rel="stylesheet" href="css/header/nav_logo.css">
<link rel="stylesheet" href="css/header/nav-search-icon.css">
<link rel="stylesheet" href="css/section/section.css">
<link rel="stylesheet" href="css/section/section-tittle.css">
<link rel="stylesheet" href="css/section/section-head.css">
<link rel="stylesheet" href="css/section/container.css">
<link rel="stylesheet" href="css/section/section_icons.css">
<link rel="stylesheet" href="css/card/card-title.css">
<link rel="stylesheet" href="css/card/card.css">
<link rel="stylesheet" href="css/card/card-img.css">
<link rel="stylesheet" href="css/card/card-link.css">
<link rel="stylesheet" href="css/card/card_precio.css">
<link rel="stylesheet" href="css/card/card_description.css">
<link rel="stylesheet" href="css/footer/footer-container.css">
<link rel="stylesheet" href="css/footer/footer_form.css">
<link rel="stylesheet" href="css/footer/footer_list.css">
<link rel="stylesheet" href="css/footer/footer-list-item.css">
<link rel="stylesheet" href="css/footer/form.css">
<link rel="stylesheet" href="css/footer/footer-form-item.css">
<link rel="stylesheet" href="css/footer/form-tittle.css">
<link rel="stylesheet" href="css/footer/footer-form-button.css">
<link rel="stylesheet" href="css/footer/footer-first.css">
<link rel="stylesheet" href="css/footer/footer-form-span.css">
<link rel="stylesheet" href="css/credits/credits.css">
<link rel="shortcut icon" href="img/ico.png" type="image/x-icon">
</head>
<body class="">
<img id="dark" class="button-dark day hvr-bob" src="/img/night.png" alt="night">
<header>
<nav class="nav margen_global">
<a href="index.html"><img class="nav_logo" src="img/Logo.png" alt=""></a>
<input class="nav_search" type="text" placeholder="¿Que deseas buscar?">
<a href="./src/views/login_user.html" class="nav_login hvr-bounce-to-right">Login</a>
<img class="nav_search_icon" src="/img/iconos/buscar.svg" alt="">
</nav>
</header>
<main>
<div class="container wrap margen_global">
<div class="show_card">
<div class="show_img_container">
<img class="card_img" src="" alt="" data-url>
</div>
<div class="show_info">
<h1 class="section_tittle" data-product></h1>
<p class="card_precio" data-price></p>
<p class="card_description" data-description></p>
</div>
</div>
</div>
</main>
<footer>
<div class="container margen_global">
<div class="footer_first">
<div class="footer_icon">
<img src="img/Logo.png" alt="">
</div>
<ul class="footer_list">
<li class="footer_list_item"><a class="hvr-underline-from-left" href="#">Quienes somos</a></li>
<li class="footer_list_item"><a class="hvr-underline-from-left" href="#">Politica de
privacidad</a>
</li>
<li class="footer_list_item"><a class="hvr-underline-from-left" href="#">Programa de
fidelidad</a>
</li>
<li class="footer_list_item"><a class="hvr-underline-from-left" href="#">Nuestras tiendas</a>
</li>
<li class="footer_list_item"><a class="hvr-underline-from-left" href="#">Quiero ser
franquiciado</a>
</li>
<li class="footer_list_item"><a class="hvr-underline-from-left" href="#">Anuncie aqui</a> </li>
</ul>
</div>
<div class="footer_form">
<form class="form" action="" data-form-footer>
<h1 class="form_tittle">Hable con nosotros</h1>
<input class="form_item" type="text" name="name" placeholder="Nombre" maxlength="40" required
data-name>
<input class="form_item" type="text" name="message" placeholder="Escriba su mensaje" maxlength="420"
required data-message>
<button class="form_button" type="submit">Enviar mensaje</button>
<span id="span" class="form_span">
<p>El mensaje ha sido enviado</p>
</span>
</form>
</div>
</div>
</footer>
<div class="credits ">
<p class="margen_global">Desarrollado por Sebastian Rojas</p>
<img src="https://images.emojiterra.com/openmoji/v14.0/512px/1f1e8-1f1f4.png" style="width: 30px;"
alt="colombia">
</div>
<script src="./js/header.js"></script>
<script type="module" src="./js/controller/search.controller.js"></script>
<script type="module" src="./js/controller/search.controller.js"></script>
<script src="./js/script.js"></script>
</body>
</html>