-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
225 lines (225 loc) ยท 10.4 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
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
<!DOCTYPE html>
<html lang="en">
<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">
<title>Changas | Home</title>
<!--Bootstrap-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<!--Font Awesome-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.8.2/css/all.min.css" integrity="sha512-rqQltXRuHxtPWhktpAZxLHUVJ3Eombn3hvk9PHjV/N5DMUYnzKPC1i3ub0mEXgFzsaZNeJcoE0YHq0j/GFsdGg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!--Custom CSS-->
<link rel="stylesheet" href="./Estilos/estilos.css">
<!--Toastify-->
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/toastify-js/src/toastify.min.css">
</head>
<body>
<!-- navbar -->
<nav class="navbar page">
<div class="navbar-center">
<button class="toggle-nav">
<i class="fas fa-bars"></i>
</button>
<ul class="nav-links">
<li>
<a href="#" class="nav-link">home</a>
</li>
<li>
<a href="./pages/products.html" class="nav-link">products</a>
</li>
<li>
<a href="./pages/about.html" class="nav-link">about</a>
</li>
</ul>
<!-- logo -->
<img src="./images/otras/logo4.png" class="nav-logo" alt="store logo">
<div class="cart-btn">
<span class="nav-icon">
<i class="fas fa-cart-plus"></i>
</span>
<div class="cart-items">0</div>
</div>
</div>
</nav>
<!-- end of navbar -->
<!-- hero -->
<header class="hero">
<div class="banner">
<h1 class="banner-title">alpargatas collection</h1>
<a href="./pages/products.html"> <!-- agrego este <a> para redireccionar a productos -->
<button class="banner-btn">shop now</button>
</a>
</div>
</header>
<!-- end of hero -->
<!-- featured products -->
<section class="section-featured">
<div class="title">
<h2><span>/</span>  featured</h2>
</div>
<div class="products-center-index">
</div>
<template product-template> <!-- No se muestra en el HTML pero lo puedo usar en JS-->
<!-- single product-->
<article class="product">
<div class="img-container">
<img src='' alt="product" class="product-img"/>
<button class="bag-btn" data-id=''><i class="fas fa-shopping-cart"></i></button>
</div>
<h3></h3>
<h4></h4>
</article>
<!-- end of single product-->;
</template>
<a href="./pages/products.html" class="btn"> all products </a>
</section>
<!-- sidebar -->
<div class="sidebar-overlay">
<aside class="sidebar">
<!-- close -->
<button class="sidebar-close"><i class="fas fa-times"></i></button>
<!-- links -->
<ul class="sidebar-links">
<li>
<a href="#" class="sidebar-link"><i class="fas fa-home fa-fw"></i>home</a>
</li>
<li>
<a href="./pages/products.html" class="sidebar-link"><i class="fas fa-shopping-basket fa-fw"></i>products</a>
</li>
<li>
<a href="./pages/about.html" class="sidebar-link"><i class="fas fa-book fa-fw"></i>about</a>
</li>
</ul>
</aside>
</div>
<!-- end of sidebar -->
<!-- cart -->
<div class="cart-overlay">
<div class="cart">
<span class="close-cart">
<i class="fas fa-window-close"></i>
</span>
<h2>your cart</h2>
<div class="cart-content">
<!-- cart item -->
<!-- <div class="cart-item">
</div> -->
<!-- end of cart item -->
</div>
<div class="cart-footer">
<h3>your total : $ <span class="cart-total">0</span></h3>
<div class="cart-footer-banner-btn">
<button class="clear-cart banner-btn">clear cart</button>
<button class="check-out-cart banner-btn">check out</button>
</div>
</div>
</div>
</div>
<!-- end of cart -->
<!-- login form -->
<div class="login-form-container">
<div class="main">
<span class="close-login-form">
<i class="fas fa-window-close"></i>
</span>
<h2>Welcome!</h2>
<form id="form_id" method="post" name="myform">
<label>User Name :</label>
<input type="text" name="username" id="username" autocomplete="username"/>
<label>Password :</label>
<input type="password" name="password" id="password" autocomplete="current-password"/>
<input type="button" value="LOGIN" id="submit" onclick="validate()"/>
</form>
<span><b class="note">Note : </b>For this demo use following username and password. <br/><b class="valid">User Name : changas<br/>Password : changas</b></span>
</div>
</div>
<!-- end of login form -->
<!-- WhatsApp floating Button -->
<div class="whatsApp-floating-button">
<a href="https://api.whatsapp.com/send?phone=5491149378647&text=Hola%21%20Quisiera%20m%C3%A1s%20informaci%C3%B3n%20sobre%20Changas%20." class="float" target="_blank" rel="noopener noreferrer">
<i class="fab fa-whatsapp my-float"></i>
</a>
</div>
<!-- End of WhatsApp floating Button -->
<!-- footer -->
<footer>
<div class="row primary">
<div class="column about">
<h3>Live simpler. Live in Changasยฎ๏ธ</h3>
<p>
We truly hope you enjoy wearing this collection as much as we enjoyed making it and imagining it in everyoneโs feet. Today more than ever, the journey is made by doing, step by step, one day after the other.
</p>
<div class="social">
<a href="https://www.facebook.com/laschangas/" target="_blank" rel="noopener noreferrer"><i class="fab fa-facebook"></i></a>
<a href="http://www.instagram.com/paezshoes" target="_blank" rel="noopener noreferrer"><i class="fab fa-instagram"></i></a>
<a href="http://www.twitter.com/naval" target="_blank" rel="noopener noreferrer"><i class="fab fa-twitter"></i></a>
<a href="https://www.youtube.com/watch?v=i1Nm-MJ313w&ab_channel=NatirutsVEVO" target="_blank" rel="noopener noreferrer"><i class="fab fa-youtube"></i></a>
<a href="https://www.linkedin.com/company/changas/" target="_blank" rel="noopener noreferrer"><i class="fab fa-linkedin"></i></a>
</div>
</div>
<div class="column links">
<h3>Information</h3>
<ul>
<li>
<a href="./pages/faqs.html">F.A.Q</a>
</li>
<li>
<a href="./pages/cookiepolicy.html">Cookies Policy</a>
</li>
<li>
<a href="./pages/terms.html">Terms Of Service</a>
</li>
<li>
<a href="./pages/contact.html">Support</a>
</li>
</ul>
</div>
<div class="column links">
<h3>Contact Us</h3>
<ul>
<li>
<a href="tel:1149378647" target="_blank" rel="noopener noreferrer"><i class="fas fa-phone"></i> 1149378647</a>
</li>
<li>
<a href="mailto:eric.changas@gmail.com" target="_blank" rel="noopener noreferrer"><i class="fas fa-envelope"></i>contacto@changas.com</a>
</li>
<li>
<a href="https://goo.gl/maps/VH32K8JtenK6SqML7" target="_blank" rel="noopener noreferrer"><i class="fas fa-map-signs"></i>Bs As, Argentina</a>
</li>
</ul>
</div>
<div class="column subscribe">
<h3>Newsletter</h3>
<div>
<form name="form1" action="#!">
<input class ='newsletter-mail-input'type="email" name='text1' placeholder="Your email id here" />
<button type="button" class="newsletter-btn">Subscribe</button>
</form>
</div>
</div>
</div>
<div class="row copyright">
<div class="footer-menu">
<a href="#">Home</a>
<a href="./pages/products.html">Products</a>
<a href="./pages/about.html">About</a>
</div>
<p>Copyright © 2022 Changas Corp.</p>
</div>
</footer>
<!-- end of footer -->
<!-- contentful -->
<script src="https://cdn.jsdelivr.net/npm/contentful@latest/dist/contentful.browser.min.js"></script>
<!-- index js -->
<script src="./js/index.js"></script>
<!-- Jquery, Popper & js Plugins for Bootstrap -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.14.7/dist/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<!-- Sweet Alert -->
<script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<!-- Toastify -->
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/toastify-js"></script>
</body>
</html>