-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
35 lines (35 loc) · 925 Bytes
/
blog.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Little Lemon</title>
</head>
<body>
<header></header>
<nav>
<ul class="nav">
<li><a href="index.html">Home</a></li>
<li><a href="location.html">Location</a></li>
<li><a href="blog.html"> Blog</a></li>
</ul>
</nav>
<main>
<h1>Blog</h1>
<article>
<h2>20% off this weekend</h2>
<p>
Come down to little lemon this weekend, and get a 20% off your meal!
</p>
</article>
<article>
<h2>Our new Menu</h2>
<p2>We've updated our new menu with new dinners, try it out!</p2>
</article>
</main>
<footer>
<p>Copywrite Littlelemon 2023</p>
</footer>
</body>
</html>