-
Notifications
You must be signed in to change notification settings - Fork 0
/
Frontend
71 lines (65 loc) · 2.44 KB
/
Frontend
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
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ZippyDeliver</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header Section -->
<header>
<h1>ZippyDeliver</h1>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<!-- Home Section -->
<section id="home" class="hero-section">
<h2>Fast & Reliable Delivery Service</h2>
<p>Experience efficient and timely deliveries with ZippyDeliver</p>
<button onclick="scrollToSection('contact')">Get in Touch</button>
</section>
<!-- Services Section -->
<section id="services" class="content-section">
<h2>Our Services</h2>
<div class="service-item">
<h3>Local Delivery</h3>
<p>Quick and reliable delivery services within the city.</p>
</div>
<div class="service-item">
<h3>Nationwide Delivery</h3>
<p>Efficient transport of packages across the country.</p>
</div>
<div class="service-item">
<h3>Real-time Tracking</h3>
<p>Track your packages live with our advanced tracking system.</p>
</div>
</section>
<!-- About Section -->
<section id="about" class="content-section">
<h2>About Us</h2>
<p>ZippyDeliver is committed to providing high-quality logistics solutions tailored to meet our customers' needs. Our dedicated team and technology-driven approach ensure seamless delivery experiences.</p>
</section>
<!-- Contact Section -->
<section id="contact" class="content-section">
<h2>Contact Us</h2>
<form action="submit_form.php" method="post">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<textarea name="message" placeholder="Your Message" required></textarea>
<button type="submit">Send Message</button>
</form>
</section>
<!-- Footer -->
<footer>
<p>© 2024 ZippyDeliver. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>