-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (60 loc) · 3.11 KB
/
index.html
File metadata and controls
61 lines (60 loc) · 3.11 KB
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
<!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 href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<link rel="stylesheet" href="./styles/style.css">
<link rel="shortcut icon" href="./assets/img/logo.png" type="image/x-icon">
<title>CoCo Coffee | Home</title>
</head>
<body>
<div class="header">
<nav class="navbar bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="./index.html"><img src="./assets/img/logo.png" alt="" class="logo"></a>
<button class="navbar-toggler" type="button" data-bs-toggle="offcanvas" data-bs-target="#offcanvasNavbar" aria-controls="offcanvasNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="offcanvas offcanvas-end" tabindex="-1" id="offcanvasNavbar" aria-labelledby="offcanvasNavbarLabel">
<div class="offcanvas-header">
<h5 class="offcanvas-title" id="offcanvasNavbarLabel">HOME</h5>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<ul class="navbar-nav justify-content-end flex-grow-1 pe-3">
<li><a href="./index.html">PRODUCTS</a></li>
<li><a href="./html/checkout.html">CHECKOUT</a></li>
<li><a href="./html/admin.html">ADMIN</a></li>
</ul>
<form class="d-flex mt-3" role="search">
</form>
</div>
</div>
</div>
</nav>
<div class="container-fluid landing">
<div class="row showcase-content">
<div class="col-12 col-lg-5 mt-5 pt-5 ms-3">
<p class="display-6 text-center"><span class="display-3">THE IMPORTANCE OF A MORNING CUP OF COFFEE CANNOT BE OVERSTATED </span></p>
<button class="btn ms-5"><a href="./HTML/admin.html">Admin Page</a></button>
</div>
<div class="col-7 col-lg-none">
</div>
</div>
</div>
</div>
<main>
<h2 class="display-5 text-center py-5">PRODUCTS</h2>
<div class="container-fluid m-5">
<div class="row product-items d-flex flex-wrap justify-content-center gap-5 mx-lg-5 px-lg-5">
</div>
</div>
</main>
<footer class="h-75"><p class="text-center text-white bg-dark sticky-bottom mb-0 h-75">Copyright ©2022 by Maxwill Isaacs</p></footer>
<script src="./js/script.js"></script>
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
</body>
</html>