-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (61 loc) · 1.32 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>
<!--
This is an HTML comment
You can write text in a comment and the content won't be visible in the page
-->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="https://glitch.com/favicon.ico" />
<title>Sushi Menu</title>
<!-- The website stylesheet -->
<link rel="stylesheet" href="style.css" />
<!-- The website JavaScript file -->
<script src="/script.js" defer></script>
</head>
<body>
<h1> Sushi Kingdom Menu</h1>
<div>
<h2> Soups </h2>
<p class="listtext">
Miso Soup <br>
Hot and Sour Soup <br>
Egg Drop Soup <br>
</p>
</div>
<div>
<h2> Appetizers</h2>
<p class= "listtext">
Edamame <br>
Spring Rolls <br>
Calamari
</p>
</div>
<div>
<h2>
Hand Rolls </h2>
<p class="listtext" >
Spicy Salmon
<br>
Salmon Avocado
<br>
Spicy Tuna
<br>
Tuna Avocado
<br>
Eel
</p>
</div>
<div>
<h2>
Chef's Rolls
</h2>
<p class = "listtext">
Dragon Roll <br>
Rainbow Roll <br>
Pink Lady Roll <br>
</p>
</div>
</body>
</html>