forked from Technigo/js-project-business-site
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
83 lines (72 loc) · 2.51 KB
/
about.html
File metadata and controls
83 lines (72 loc) · 2.51 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
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - Juizy Burger</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="top"></div> <!-- smooth scroll -->
<header>
<div class="navbar">
<div class="logo">
<a href="#top"><img src="img/juizy-burger-logo.png" alt="Juizy Burger"></a>
</div>
<div class="menu-toggle">☰</div>
<div class="navbar-right">
<a href="index.html">Home</a>
<a href="menu.html">Menu</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
<button id="dark-mode-toggle">🌙</button>
</div>
</div>
</header>
<main>
<!-- Hero Section -->
<div class="hero">
<div class="hero-content">
<h1>About Juizy Burger</h1>
<p>Bringing You The Juiciest Burgers Since 2025</p>
</div>
</div>
<!-- About Section -->
<section class="about-container">
<h2>Our Story</h2>
<p>
Juizy Burger started as a small food truck in 2025, driven by the passion for crafting the perfect burger.
Today, we've grown into a well-loved burger joint known for using high-quality ingredients and delivering
mouthwatering flavors to our customers.
</p>
<h2>What Makes Us Special?</h2>
<ul>
<li>🥩 100% fresh, never frozen beef</li>
<li>🥗 Locally sourced ingredients</li>
<li>🔥 Grilled to perfection</li>
<li>🤤 Unique signature sauces</li>
</ul>
<h2>Join Us</h2>
<p>
Whether you're craving a classic cheeseburger or looking for a gourmet experience, we have something for
everyone. Visit our <a href="menu.html">menu</a> to explore our delicious options.
</p>
</section>
</main>
<footer>
<div class="footer">
<p>
Follow us on
<a href="https://facebook.com" target="_blank">Facebook</a>
<a href="https://instagram.com" target="_blank">Instagram</a>
and <a href="https://twitter.com" target="_blank">Twitter</a> |
<a href="contact.html">Contact Us</a> |
<a>Privacy Policy</a>
</p>
<p>© 2025 <strong>Juizy Burger</strong>. All Rights Reserved. | Developed & Designed by
<strong><a href="https://github.com/DevByRico" target="_blank">DevByRico</a></strong></p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>