38 lines
959 B
HTML
38 lines
959 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" type="text/css" href="css/style.css">
|
|
<title>Home</title>
|
|
</head>
|
|
<body>
|
|
|
|
<nav>
|
|
|
|
<ul>
|
|
|
|
<a href="index.html"><li>Ashton Pizzeria</li></a>
|
|
<a href="contact.html"><li>Contact Us</li></a>
|
|
<a href="about.html"><li>About</li></a>
|
|
<a href="order.html"><li id="spotlight">Order Now!</li></a>
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
<h1>Home</h1>
|
|
|
|
<main>
|
|
|
|
<h3>Home is where the pizza is.</h3>
|
|
<p>At Ashton Pizzeria, we love everything pizza. So you deserve the best
|
|
pizza possible, which is why we are committed to sourcing locally,
|
|
with every pizza prepared completely by hand. You won't find any GMOs or
|
|
additives with our pizza. The best flavor, the best variety, the best option.
|
|
Come on by to Ashton Pizzeria today to have a slice of our world-famous pizza!</p>
|
|
|
|
</main>
|
|
|
|
</body>
|
|
</html> |