This repository was archived by the owner on Jan 14, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 600
Expand file tree
/
Copy pathindex.html
More file actions
117 lines (102 loc) · 4.4 KB
/
index.html
File metadata and controls
117 lines (102 loc) · 4.4 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Responsive Cake webpage</title>
<link rel="stylesheet" href="./style.css">
<!-- fav awesome -->
<!-- icon -->
<link rel="icon" href="./images/favicon.ico">
<!-- google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@100&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Sassy+Frass&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@200&family=Sassy+Frass&display=swap" rel="stylesheet">
</head>
<body>
<div class="hero-Banner">
<nav class="hero-banner-navbar">
<div class="hero-banner-navbar-logo">
<h2>Sweet Delights</h2>
</div>
<div class="hero-banner-navbar-links">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Cakes</a></li>
<li><a href="#">Order</a></li>
<li><a href="#">Lessons</a></li>
<li><a href="#">About us</a></li>
</ul>
</div>
</nav>
<div class="hero-Banner-content">
<div class="hero-Banner-content-text">
<h1>Amazing Cakes</h1>
<p>Indulge in the sweetest creations, crafted with love just for you.
<br> Bite into a world of flavor, one delicious cake at a time.</p>
</div>
<div class="hero-Banner-content-button">
<button>Get Your Sweet Treats Today</button>
</div>
</div>
</div>
<div class="features">
<div class="features-content poundCake">
<h1>Pound-Cake</h1>
<p>Indulge in the timeless flavor of our decadent pound cake.</p>
<button>Learn More</button>
</div>
<div class="features-content redVelvet">
<h1>Red-Velvet-Cake</h1>
<p>Satisfy your sweet tooth with our velvety smooth and tantalizing red velvet cake. </p>
<button>Learn More</button>
</div>
<div class="features-content carrot-Cake">
<h1>Carrot-Cake</h1>
<p>Discover the perfect balance of sweet, nutty, and spicy with every bite of our irresistible carrot cake.</p>
<button>Learn More</button>
</div>
</div>
<div class="topSelling">
<div class="topSelling-heading">
<h1>Top Selling</h1>
<hr>
</div>
<div class="topSelling-content">
<p>Our top selling cakes are a testament to the timeless appeal of classic flavors and irresistible sweetness.<br> So why wait?</p>
</div>
<div class="topSelling-products">
<div class="topSelling-products-item">
<img src="https://cdn-icons-png.flaticon.com/128/2561/2561542.png" alt="">
<a class="products-Button" href="">Buy Now!</a>
</div>
<div class="topSelling-products-item">
<img src="https://cdn-icons-png.flaticon.com/512/123/123252.png" alt="">
<a class="products-Button" href="">Buy Now!</a>
</div>
<div class="topSelling-products-item">
<img src="https://cdn-icons-png.flaticon.com/512/3014/3014488.png" alt="">
<a class="products-Button" href="">Buy Now!</a>
</div>
<div class="topSelling-products-item">
<img src="https://cdn-icons-png.flaticon.com/512/2439/2439042.png" alt="">
<a class="products-Button" href="">Buy Now!</a>
</div>
</div>
</div>
<footer>
<div class="footer-icon">
<i class="fa-brands fa-twitter"></i>
<i class="fa-brands fa-facebook"></i>
<i class="fa-solid fa-envelope"></i>
</div>
<div class="footer-content">
© 2023 Cake Biz, Inc.
</div>
</footer>
<script src="https://kit.fontawesome.com/87551aaac5.js" crossorigin="anonymous"></script>
</body>
</html>