-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (37 loc) · 1.37 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
<!DOCTYPE html>
<html>
<head>
<title>My Home</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="Menu.html">Menu</a></li>
<li class="logo"><a href="index.html">Artisan Bakery Logo</a></li>
<li><a href="Locations.html">Locations</a></li>
<li><a href="Contacts.html">Contact Us</a></li>
</ul>
</nav>
</header>
<section class="features">
<figure>
<img src="images/BakedOatmeal.jpg" alt="amazing fresh oats">
<figcaption>Fresh Baked Oatmeal</figcaption>
</figure>
<figure>
<img src="images/ChaiLatte.jpg" alt="fresh Chai Latte">
<figcaption>Fresh Chai Latte</figcaption>
</figure>
<figure>
<img src="images/Muffins.JPG" alt="fresh muffins">
<figcaption>Fresh Baked Muffins</figcaption>
</figure>
</section>
<footer>
F3-103 Ivy Apartments, Ivy Estate, Wagholi, Pune-412207
</footer>
</body>
</html>>