-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproductos.html
72 lines (63 loc) · 3.48 KB
/
productos.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="./css/style.css">
<link rel="shortcut icon" href="./assests/img/Logo-ico.ico" type="image/x-icon">
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<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=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Grenze+Gotisch:wght@100..900&display=swap" rel="stylesheet">
<title>Stride Gear</title>
</head>
<body>
<header class="flex w-full md:flex-wrap flex-row justify-around">
<section class="bg-[#99C2EC] flex flex-col justify-between items-center w-full md:flex-row">
<img class="h-[125px] w-[125px] lg:h-[150px] lg:w-[150px]" src="./assests/img/logoconfondo.png" alt="logo">
<!-- <h1>Stride Gear</h1> -->
<nav class="flex gap-4 mb-2 md:mr-8 md:gap-8 items-center justify-center flex-wrap">
<a class="bg-blue-500 hover:bg-[#EE5B58] text-white font-bold py-2 px-4 rounded" href="./index.html">INICIO</a>
<a class="bg-blue-900 hover:bg-[#EE5B58] text-white font-bold py-2 px-4 rounded" href="#">PRODUCTOS</a>
<a class="bg-blue-500 hover:bg-[#EE5B58] text-white font-bold py-2 px-4 rounded" href="./contacto.html">CONTACTO</a>
<a class="self-center w-[50px] h-[50px]" href="./carrito.html"><img src="./assests/img/bag_buy_cart_market_shop_shopping_tote_icon_123191.png" alt=""></a>
</nav>
</section>
</header>
<main class="bg-orange-100 w-full height: min-content;">
<!-- CONTENEDOR PRINCIPAL -->
<div >
<!-- FILTROS -->
<div class="min-h-20 bg-[#99C2EC] flex flex-col justify-center items-center gap-5 lg:flex-row">
<!-- SEARCH -->
<div class="flex items-center justify-center ml-5 md:mr-14">
<label class="text-black text-2xl text-center">Busque por marca
<input type="text" id="search" class="text-black mt-2 ">
</label>
</div>
<!-- SELECT -->
<div class="ml-4 mb-4 " >
<select name="product" id="contenedorSelect" class=" w-[160px] p-1 text-center lg:mt-6 lg:w-[200px] lg:p-[6.5px]" >
</select>
</div>
</div>
<section class="flex flex-col justify-center">
<div class="">
<h2 class="text-center text-6xl mt-7 font-semibold md:text-5xl lg:text-7xl" id="shadowMovie">Productos</h2>
</div>
<!-- CARDS -->
<div id="contenedorCards" class="flex justify-center flex-wrap gap-10 min-h-screen mt-5 mb-9 ">
</div>
</section>
</div>
</main>
<footer class="bg-[#99C2EC] flex justify-center h-1/4 w-full p-4 mt-auto">
<h3 class="text-sm lg:text-xl py-3">
© MindHub - Stride Gear 2024 - Todos los derechos reservados.
</h3>
</footer>
<script src="./js/data.js"></script>
<script type="module" src="./js/app.js"></script>
</body>
</html>