-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>PizzaZone</title>
<link rel="stylesheet" href="css/standard.css">
<link href="https://fonts.googleapis.com/css?family=Lexend+Deca&display=swap" rel="stylesheet"
</head>
<body>
<header>
<h1>The PizzaZone</h1>
<ul>
<li class="navItem"><a href="index.html">Home</a></li>
<li class="navItem"><a href="styles.html">Styles</a></li>
<li class="navItem"><a href="recipe.html">Recipie</a></li>
</ul>
</header>
<div id="content">
<h1>Welcome to my Pizza Site</h1>
<h2>Just the beginning</h2>
<p>This site exists to explain the wonders of pizza to the masses. Hopefully, you enjoy pizza.</p>
<p>Pizza has humble origins in Italy in the late 1700's after the tomato was introduced to the locals by Spanish Traders. It began as a simple tomato puree atop focaccia. It quickly became a neopolitan hit as a meal that could be produced cheaply and easily for the masses due to the availability of grain. Additional toppings, such as cheese, meats, and other vegetables, were only introduced later.</p>
<p>If you would like to learn information about different styles of pizza around the world, check the link on the sidebar for "styles".</p>
<img src="res/homepizza.jpg" alt="a delicious looking pizza">
</div>
</body>
</html>