-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (64 loc) · 2.31 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
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="images/logo.svg">
<link rel="stylesheet" type="text/css" href="styles.css">
<script src="script.js"></script>
<title>Fire Pizzeria</title>
</head>
<body>
<header>
<section id="logo">
<img alt="Fire Pizzeria's logo" src="images/logo.svg" height="50">
<p>Fire Pizzeria</p>
</section>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<video src="videos/fire-background-loop.mp4" autoplay muted height="500" loop></video>
<section id="main-left">
<h1>Welcome to the Fire Pizzeria!</h1>
<p>Savor perfection at Fire Pizzeria. Handcrafted pizzas, premium ingredients, and a warm ambiance. Join us
for an unforgettable taste journey. Pizza, redefined.</p>
<button>Sign up</button>
</section>
<section id="main-right">
<img alt="Pizza baking in an open firewood oven" src="images/pizza-oven.jpg" height="300">
<a class="attribution" href="https://www.pexels.com/photo/pizza-in-oven-1878346/">Photo by André
Beltrame</a>
</section>
</main>
<section id="menu">
<h2>Checkout our (fire) menu!</h2>
<div id="menu-items">
</div>
</section>
<section id="quote">
<blockquote>
<p>Pizza is a circle. Pizza is my life. Pizza is the circle of life.</p>
<cite>— Ed Sheeran</cite>
</blockquote>
</section>
<section id="modal">
<div id="modal-left">
<p id="title">Feeling hungry? Order now!</p>
<p id="description">From savory classics to mouthwatering specialties, we're ready to bring a feast to your
doorstep. Don't resist - treat yourself to a delicious meal today!</p>
</div>
<div id="modal-right">
<button>Sign up</button>
</div>
</section>
<footer>
Copyright © Sachintha Senanayake 2023
</footer>
</body>
</html>