-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
53 lines (51 loc) · 2 KB
/
Copy pathcontact.html
File metadata and controls
53 lines (51 loc) · 2 KB
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
<!-- contact.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - Fast Food Restaurant</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<input type="checkbox" id="toggleButton" class="toggle-button">
<label for="toggleButton">☰</label>
</head>
<body>
<!-- Navbar -->
<nav class="navbar">
<div class="navbar-left">
<a href="home.html" class="logo">FastFood Hub</a>
</div>
<div class="navbar-right">
<ul class="nav-links">
<li><a href="home.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<input type="text" class="search-input" placeholder="Search food...">
<button class="search-button"><i class="fas fa-search"></i></button>
</div>
</nav>
<!-- Contact Section with Background Image -->
<section class="contact-section">
<div class="contact-form">
<h2>Contact Us</h2>
<form action="#">
<input type="text" placeholder="Your Name" required>
<input type="email" placeholder="Your Email" required>
<textarea placeholder="Your Message" rows="4" required></textarea>
<button type="submit">Send Message</button>
</form>
</div>
</section>
<!-- Footer Section -->
<footer>
<div class="social-icons">
<a href="#" class="social-icon"><i class="fab fa-facebook"></i></a>
<a href="#" class="social-icon"><i class="fab fa-instagram"></i></a>
<a href="#" class="social-icon"><i class="fab fa-youtube"></i></a>
</div>
<p>© 2025 FastFood Hub. All Rights Reserved.</p>
</footer>
</body>
</html>