-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (36 loc) · 1.09 KB
/
Copy pathindex.html
File metadata and controls
41 lines (36 loc) · 1.09 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
<!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" />
<title>Home</title>
<style>
#navbar{
display: flex;
justify-content: end;
gap: 20px;
}
</style>
</head>
<body>
<div id="navbar">
<!--Add navbar divs here-->
<!-- Link to bucket.html -->
<div>Log in</div>
<div>Sign up</div>
<div>Items</div>
<a id="go_bucket" href="bucket.html">Bucket</a>
<div id="coffee_count">
0
<!--Show total number of coffee added to bucket here, do not add anything only Total count. Not even "Count - 5" but like this "5" -->
</div>
</div>
<div id="menu">
<!--Show coffee list here in grid format-->
<!-- add an add to bucket button to each item, give it HTML id as 'add_to_bucket' -->
<button id="add_to_bucket"></button>
</div>
</body>
</html>
<script type="text/javascript" src="./scripts/index.js"></script>