forked from gocodeup/coffee-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (69 loc) · 3.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Coffee Shop</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Sacramento&display=swap" rel="stylesheet">
<link rel="stylesheet" href="CSS/style.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
</head>
<body>
<div class="page-wrapper">
<header class="justify-content-center text-light py-3 mb-4 border-custom shadow-text">
<div class="d-flex justify-content-center">
<img src="../IMG/coffee-cup5.svg" width="50px" alt="coffee cup" class="mx-3 align"><span
class="fs-1 ju">Coffee</span><img src="../IMG/coffee-cup5.svg" width="50px" alt="coffee cup"
class="mx-3">
</div>
</header>
<main class="row text-light px-5 shadow-text">
<!-- Column for coffee list-->
<div class="container">
<div class="row">
<div class="col-lg-6 text-center">
<div id="coffees" class="row w-100">
</div>
</div>
<!-- First form-->
<div class="col-lg-6">
<form class="border-custom py-3">
<h1>Choose a Coffee</h1>
<label for="roast-selection" class="fw-bold my-2 larger-text border-custom">Roast</label>
<select id="roast-selection" class="form-control my-2 opacity-75">
<option selected>all</option>
<option>light</option>
<option>medium</option>
<option>dark</option>
</select>
<label for="search" class="fw-bold my-2 larger-text">Coffee Name</label>
<input type="search" id="search" class="form-control my-2 opacity-75"/>
</form>
<!-- Final form-->
<form>
<h1 class="my-3">Add Coffee</h1>
<label for="roast-selection2" class="fw-bold my-2 larger-text border-custom">Roast</label>
<select id="roast-selection2" class="form-control my-2 opacity-75">
<option selected>all</option>
<option>light</option>
<option>medium</option>
<option>dark</option>
</select>
<label for="search2" class="fw-bold my-2 larger-text">Name</label>
<input type="text" id="search2" class="form-control my-2 opacity-75"/>
<button id="submit2" type="submit" class="btn btn-success w-100 mt-3">Submit
</button>
</form>
</div>
</div>
</div>
</main>
</div>
<script src="JS/main.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"
integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz"
crossorigin="anonymous"></script>
</body>
</html>