-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (39 loc) · 1.07 KB
/
index.html
File metadata and controls
45 lines (39 loc) · 1.07 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Capstone project</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="main">
<nav>
<div class="navbar">
<div class="dropdown">
<a href="#weekday" class="dropbtn">WEEKDAY</a>
<div class="dropdown-content" id="weekdayDropdown">
<a href="#breakfast">Breakfast</a>
<a href="#lunch">Lunch</a>
<a href="#dinner">Dinner</a>
</div>
</div>
<div class="dropdown">
<a href="#weekend" class="dropbtn">WEEKEND</a>
<div class="dropdown-content" id="weekendDropdown">
<a href="#brunch">Brunch</a>
<a href="#dinner">Dinner</a>
</div>
</div>
<a href="#about">ABOUT</a>
</div>
</nav>
<form action = "general-feedback.html">
<button class = "feedback-button">
Feedback
</button>
</form>
</div>
<script src="script.js"></script>
</body>
</html>