-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (59 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/styles.css" />
<title>Document</title>
</head>
<header>Fork&Spoon</header>
<body>
<!-- This is the Nav -->
<nav>
<div class="navbar">
<div class="logo">
<a href=""> <img src="images/logo.png" alt="" /></a>
</div>
<ul>
<a href="index.html"><li>Home</li></a>
<a href="about.html"><li>About</li></a>
<a href="contact.html"><li>Contact</li></a>
</ul>
</div>
</nav>
<!-- This is the left side including section & article -->
<div class="left">
<section>
<p>I am a section.</p>
</section>
<article>
<p>I am an article.</p>
</article>
</div>
<!-- This is an aside. -->
<aside>
<p>I am an aside.</p>
</aside>
<!-- this is the column section -->
<div class="row">
<div class="column1">
<h2>Lunch Menu</h2>
<p>Chicken Alfreado with Garlic Bread</p>
</div>
<div class="column2">
<h2>Dinner Menu</h2>
<p>Sea Bass with garlic roasted veggies, finished off with a maple glaze</p>
</div>
</div>
<!-- This is the footer -->
<footer>
<p>I am a footer.</p>
</footer>
</body>
</html>