-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (34 loc) · 1.33 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Just Bake - Cake Shop</title>
<style>
body { font-family: Arial, sans-serif; margin: 0; background: #fafafa; }
header { background: #ff6b6b; color: white; text-align: center; padding: 20px; }
nav a { color: white; text-decoration: none; margin: 0 15px; font-weight: bold; }
#home { text-align: center; padding: 40px; }
#home img { width: 300px; border-radius: 10px; }
footer { background: #ff6b6b; color: white; text-align: center; padding: 10px; margin-top: 20px; }
</style>
</head>
<body>
<header>
<h1>Welcome to Just Bake</h1>
<nav>
<a href="index.html">Home</a>
<a href="cakes.html">Cakes</a>
<a href="carts.html">Cart</a>
</nav>
</header>
<section id="home">
<h2>Discover Deliciousness!</h2>
<p>The best cakes in town, made just for you. Browse and add your favorites to the cart!</p>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQm7aV1yELExAt2CPTCI7_JTSHlQJKK3TMXbw&s" alt="Cake Shop Image">
</section>
<footer>
<p>© 2024 Cake Shop. Just Bake.</p>
</footer>
</body>
</html>