-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path03.html
More file actions
33 lines (33 loc) · 1003 Bytes
/
03.html
File metadata and controls
33 lines (33 loc) · 1003 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Nyagrodha</title>
<link rel-"stylesheet" href="style1.css">
</head>
<body>
<header>
<img src="img1.jpg" <!--just for example-->
</header>
<nav>
<ul>
<li><a href="index1.html">Home</a></li>
<li><a href="location.html">Location</a></li> <!--just for example-->
<li><a href="blog.html">Blog</a></li>
</ul>
</nav>
<main>
<h1>Cafe Nyagrodha</h1>
<article>
<h2> 20% Off this weekend</h2>
<p>Come down to Nyagrodha and enjoy your meal.</p>
</article>
<article>
<h2><u>Our new menu</u></h2>
<p>We've updated our menu with new types of filter coffee.</p>
</article>
</main>
<footer>
<p> <i> Copyright Nyagrodha </i> </p>
</footer>
</body>
</html>