-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
138 lines (128 loc) · 4.63 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
<!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" />
<link rel="icon" type="image/png" sizes="32x32" href="./Img/favicon-32x32.png">
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,500;1,100;1,300&display=swap"
rel="stylesheet"
/>
<script src='https://api.mapbox.com/mapbox-gl-js/v2.2.0/mapbox-gl.js'></script>
<link href='https://api.mapbox.com/mapbox-gl-js/v2.2.0/mapbox-gl.css' rel='stylesheet' />
<link rel="stylesheet" href="./styles/sidebar.css" />
<link rel="stylesheet" href="./styles/global_style.css" />
<link rel="stylesheet" href="./index/mainpage.css" />
<link rel="stylesheet" href="./styles/footer.css">
<title>NUCBAR</title>
</head>
<body>
<div id='backdrop' >
<aside class='sidebar' id='sidebar'>
<div class='sidebar-btn-close-container' >
<button class='sidebar-btn-close' id='btn_close'>
<img src="./Img/closeBtn.png" alt="X">
</button>
</div>
<div class='logo_container'>
<!-- <img src="/Img/cigars.png" alt="cigars" /> -->
<h1>NUCBAR</h1>
</div>
<ul>
<div>
<li>
<a href='/'>Home</a>
</li>
<li>
<a href="/aboutus.html">About us</a>
</li>
<li>
<a href="#main__title"> Productos</a>
</li>
<li id='login_sidebar'>
<a href="/login.html">Ingresar</a>
</li>
<li class='logout_Sibar' id='li_logout'>
<button id='logout_sidebar'>Log out</button>
</li>
</div>
</ul>
</aside>
</div>
<div class="container">
<div class="nav__container">
<nav class="navbar__content">
<img src="/Img/cigars.png" alt="cigars" />
<button class='hamburger' id='hamburger_btn'>
<img src='/Img/hamburger3.png' alt='hamburger'>
</button>
<a class="pseudo" href="/aboutus.html">About us</a>
<a href="#main__title"> <p id='pLink' >Productos</p></a>
<a id='username'>Username</a>
<a class="pseudo" href="/login.html" id='ingresar'>Ingresar</a>
<a ><button class='logout_btn' id='logoutBtn'>Logout</button></a>
<button class='nav_btn' id='nav_btn'>
<div class='cart_quantity_container'>
<p id='cart_quantity'>0</p>
</div>
<img src="./Img/cart.png" alt="" />
</button>
</nav>
</div>
<div class="main__title" id='main__title'>
<h1 >Nuestros Productos</h1>
<hr />
</div>
<div class="noLoading" id="loading">
<h1>Cargando...</h1>
<img src="/Img/landaLoading.gif" alt="" />
</div>
<div class="noError" id="error">
<h1>Se Produjo un error, intenalo de nuevo.</h1>
</div>
<div class='alert' id='alert'>
<img src="/Img/markIcon.png" alt="markicon">
<p id='alert_msg'></p>
</div>
</div>
<footer class="footer__content">
<div class='footer'>
<div>
<ul>
<li>
<img class='linkedin_icon' src='./Img/footer/linkedIn_PNG38.png'/>
<a href="https://www.linkedin.com/in/sebastianchaca/" target="_blank">LinkedIn </a>
</li>
<li>
<img class='github_icon' src='./Img/footer/github.png'/>
<a href="https://github.com/SebastianChaca" target="_blank">Github </a>
</li>
<li>
<img class='portfolio_icon' src='./Img/footer/kisspng-computer-icons-page-icon-design-brief-5b46e74ce63a76.929270671531373388943.png'/>
<a href="https://sebastianchaca.me" target="_blank">Portfolio </a>
</li>
</ul>
</div>
<div>
<ul>
<li>
<p> © Sebastian Chaca</p>
</li>
</ul>
</div>
<ul>
<li>
<div id='map' class='map'></div>
</li>
</ul>
</div>
</footer>
<script src="./index/mainpage.js"></script>
<script src="./globalJs/globaljs.js"></script>
<script src="./globalJs/mapbox.js"></script>
</body>
</html>