-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfs.html
More file actions
78 lines (74 loc) · 2.76 KB
/
Copy pathfs.html
File metadata and controls
78 lines (74 loc) · 2.76 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!-- home.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home - 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">
</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>
<!-- Hero Section (Background Image + Food Description) -->
<section class="hero" id="home">
<div class="hero-content">
<h1>Delicious Fast Food Just for You!</h1>
<p>Explore our variety of mouth-watering dishes and combos!</p>
</div>
</section>
<!-- Food Items Section -->
<section class="food-items" id="about">
<div class="container">
<div class="food-item">
<img src="https://via.placeholder.com/300x200" alt="Burger">
<h3>Burgers</h3>
</div>
<div class="food-item">
<img src="https://via.placeholder.com/300x200" alt="Pizza">
<h3>Pizza</h3>
</div>
<div class="food-item">
<img src="https://via.placeholder.com/300x200" alt="Salads">
<h3>Salads</h3>
</div>
<div class="food-item">
<img src="https://via.placeholder.com/300x200" alt="Shakes">
<h3>Shakes</h3>
</div>
</div>
</section>
<!-- Combo Offer Section -->
<section class="combo-offer">
<div class="container">
<h2>Combo Offer</h2>
<div class="combo-image">
<img src="https://via.placeholder.com/400x300" alt="Combo Offer">
</div>
</div>
</section>
<!-- Footer Section with Social Media Icons -->
<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>