-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
56 lines (54 loc) · 2.12 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
<!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="stylesheet" href="/style.css">
<script src="https://kit.fontawesome.com/577c267cd5.js" crossorigin="anonymous" defer></script>
<script type="module" src="/js/bundle.js"></script>
<!--<script type="module" src="js/app.js" defer></script>-->
<title>Gfx Store</title>
</head>
<body class="body d-flex flex-column">
<header class="header d-flex space-between align-items-center">
<div class="logo d-flex ">
<img src="resources/gfx-logo.png">
<h1>Gfx Store</h1>
</div>
<nav class="navigation d-flex">
<a class="js-route" id = "home-button" href="#/home">Home</a>
<a class="js-route" href="#/products">Products</a>
<a class="js-route d-flex space-evenly align-items-center" href="#/cart">Cart
<div class = "product-counter" id="product-counter" data-counter="0">
0
</div>
</a>
<a class="js-route" href= "#/registration">Registration</a>
</nav>
</header>
<main class="main home-main d-flex" >
<div id="main-container" class="main-container d-flex ">
</div>
</main>
<footer class="footer d-flex align-items-center space-between">
<div class="copyright d-flex">
<p>Sebastian Arroyo © - Rooftop 2021</p>
</div>
<div class="social-media d-flex space-evenly">
<a href="https://www.facebook.com/rooftopacademy/">
<i class="fab fa-facebook"></i>
</a>
<a href="https://www.instagram.com/rooftopacademy/">
<i class="fab fa-instagram"></i>
</a>
<a href="#">
<i class="fab fa-twitter"></i>
</a>
<a href="https://github.com/RooftopAcademy/sebastian_arroyo_compartido">
<i class="fab fa-github"></i>
</a>
</div>
</footer>
</body>
</html>