-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
47 lines (45 loc) · 1.82 KB
/
Copy pathabout.html
File metadata and controls
47 lines (45 loc) · 1.82 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
<!-- about.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - 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>
<!-- About Section (Background image and text) -->
<section class="about-section">
<div class="about-content">
<h2>About Us</h2>
<p>We are passionate about serving delicious fast food. Come and enjoy our burgers, pizzas, salads, and shakes with your friends and family!</p>
</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>