-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathThe J-Prop Shop_High-Quality Circus Props and Equipment.html
56 lines (56 loc) · 2.26 KB
/
The J-Prop Shop_High-Quality Circus Props and Equipment.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The J-Prop Shop</title>
<link rel="stylesheet" href="Styling The J-Prop Shop_Comprehensive CSS for a Circus Props Website.css">
</head>
<body>
<header>
<h1>The J-Prop Shop</h1>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#products">Products</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="home">
<h2>Welcome to The J-Prop Shop</h2>
<p>Your one-stop shop for all your circus props and equipment needs. We provide high-quality products that are perfect for professionals and enthusiasts alike.</p>
<img src="circus.jpg" alt="Circus props and equipment">
</section>
<section id="products">
<h2>Our Products</h2>
<article>
<h3>Juggling Sticks</h3>
<p>Our juggling sticks are made from durable materials and come in various designs to suit all skill levels.</p>
<img src="juggling-sticks.jpg" alt="Juggling sticks">
</article>
<article>
<h3>Clown Shoes</h3>
<p>Check out our range of colorful and comfortable clown shoes that will make your performance stand out.</p>
<img src="clown-shoes.jpg" alt="Clown shoes">
</article>
</section>
<section id="contact">
<h2>Contact Us</h2>
<form action="#" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Submit</button>
</form>
</section>
</main>
<footer>
<p>© 2024 The J-Prop Shop. All rights reserved.</p>
</footer>
</body>
</html>