-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
43 lines (40 loc) · 1.49 KB
/
about.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cake Delights - About</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="container">
<h1>Cake Delights</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="gallery.html">Gallery</a></li>
</ul>
</nav>
</div>
</header>
<section id="about">
<h1>About Us</h1>
<p>Welcome to Cake Delights, where every bite tells a story of passion and craftsmanship. At Cake Delights, we are dedicated to creating exceptional cakes that elevate your celebrations and create lasting memories.</p>
<p>Located in the heart of Arusha, Njiro, we serve a wide range of cakes crafted with the finest ingredients and attention to detail.</p>
<p>Contact us:</p>
<ul>
<li>Email: <a href="mailto:dannymor696@gmail.com">dannymor696@gmail.com</a></li>
<li>Phone: <a href="tel:+255789378297">0789 373 297</a></li>
<li>Location: Arusha, Njiro</li>
</ul>
</section>
<footer>
<div class="container">
<p>© 2024 Cake Delights</p>
</div>
</footer>
</body>
</html>