-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
46 lines (41 loc) · 1.47 KB
/
home.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Halloween Props Shop</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<video id="backgroundVideo" autoplay loop muted>
<source src="background-video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<header>
<h1>Welcome to the Halloween Props Shop</h1>
<p>Your source for spooky and fun decorations!</p>
</header>
<nav>
<ul>
<li><a href="./home.html">Home</a></li>
<li><a href="./products.html">Products</a></li>
<li><a href="./calc.html">calculate</a></li>
<li><a href="./form.html">order</a></li>
</ul>
</nav>
<main>
<a href="./products.html" style="text-decoration: none;"><section class="featured-products">
<h2>Featured Products</h2>
</section></a>
</section>
<section class="about-us">
<h2>About Us</h2>
<p>We are your one-stop shop for all things Halloween! Whether you're looking for spooky decorations, costumes, or props, we've got you covered. Get ready for a hauntingly good time.</p>
</section>
</main>
<footer>
<p>© 2023 Halloween Props Shop</p>
</footer>
<script src="script.js"></script>
</body>
</html>