-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (48 loc) · 2.08 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
<!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">
<script defer src="https://use.fontawesome.com/releases/v5.15.4/js/all.js"
integrity="sha384-rOA1PnstxnOBLzCLMcre8ybwbTmemjzdNlILg8O7z1lUkLXozs4DHonlDtnE7fpc"
crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" href="img/mushi.ico" type="image/x-icon">
<title>Mushi</title>
</head>
<body class="d-flex flex-col">
<header id="header" class="header j-space-between">
<a href="/" class="home-logo nav-link"></a>
<button class="btn dark-mode">
<i class="fas fa-adjust"></i>
</button>
</header>
<main class="main d-flex">
<div id="alert-container">
</div>
<aside id="navbar" class="navbar d-flex w-100">
<div class="nav-header d-flex w-100 j-space-between">
<button class="btn dark-mode aside-dark-mode">
<i class="fas fa-adjust"></i>
</button>
<a href="/" class="home-logo aside-logo nav-link"></a>
<button id="hamburger" class="btn hamburger">☰</button>
</div>
<nav id="nav-menu" class="nav-menu a-items-end text-center w-100 d-none grow flex-col">
<a href="/" class="nav-link w-100">Home</a>
<a href="/products" class="nav-link w-100">Our Products</a>
<a href="/cart" class="nav-link w-100">Go to Cart</a>
<!-- <a href="/about" class="nav-link w-100">About Us</a> -->
</nav>
</aside>
<div id="content" class="content d-flex flex-col j-center a-items-center">
</div>
</main>
<footer id="footer" class="footer d-flex flex-col a-items-center j-center">
<p>♡ Scarlet Albornoz © - Rooftopper ♡ 2021</p>
</footer>
<!-- scripts -->
<script type="module" src="dist/bundle.js"></script>
</body>
</html>