-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (27 loc) · 1.13 KB
/
index.html
File metadata and controls
28 lines (27 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Icecream Store</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class=container>
<h1 class="title">Welcome to our ice cream store</h1>
<div class="flavors">
<h2 class="subtitle">These are our flavors:</h2>
<p class="flavor"><a href="vanilla.html">Vanilla</a></p>
<p class="flavor"><a href="chocolate.html">Chocolate</a></p>
<p class="flavor"><a href="banana.html">Banana</a></p>
<p class="flavor"><a href="mango.html">Mango</a></p>
<p class="flavor"><a href="coconut.html">Coconut</a></p>
<p class="flavor"><a href="lemon.html">Lemon</a></p>
<p class="flavor"><a href="grapefruit.html">Grapefruit</a></p>
<p class="flavor"><a href="orange.html">Orange</a></p>
<p class="flavor"><a href="strawberry.html">Strawberry</a></p>
<p class="flavor"><a href="pistachio.html">Pistachio</a></p>
</div>
</div>
</body>
</html>