-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (118 loc) · 4.28 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
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
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Email template design two</title>
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/fontawesome.min.css"
integrity="sha512-d0olNN35C6VLiulAobxYHZiXJmq+vl+BGIgAxQtD5+kqudro/xNMvv2yIHAciGHpExsIbKX3iLg+0B6d0k4+ZA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/brands.min.css"
integrity="sha512-8RxmFOVaKQe/xtg6lbscU9DU0IRhURWEuiI0tXevv+lXbAHfkpamD4VKFQRto9WgfOJDwOZ74c/s9Yesv3VvIQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<div class="container">
<h4 class="logo"><span>Delicious</span>Food</h4>
<h2>today save</h2>
<h1>50%</h1>
<img src="./assets/notbiscuit-removebg-preview.png" alt="" class="cake" />
<div class="news">
<h3>Today's hot news</h3>
<p>
Get 50% off your favorite foods. You can enjoy this hot discount only
today. To get this discount use promocode
<span class="off">50% OFF </span>
</p>
<button class="btn"><a href="/">get 50% off</a></button>
<h5>
Today's Discount <br />
<span class="products">Products</span>
</h5>
<img
src="./assets/Untitled_design__1_-removebg-preview.png"
alt=""
class="biscuit"
/>
<h5 class="paket">
Buy 3 paket <br />
Cookies=Get 50% OFF <br /><span class="offer">Offer Price:40$</span>
</h5>
</div>
<div class="cookies">
<img src="./assets/cake-removebg-preview.png" alt="" class="cookie" />
</div>
<div class="coco">
<h5>
Buy 2kg Coco <br />
Sweets=Get 50% OFF <br />
<span class="price">Offer Price:150$</span>
</h5>
</div>
<img src="./assets/j1-removebg-preview.png" alt="" class="bottle" />
<img src="./assets/j3-removebg-preview.png" alt="" class="bottle" />
<img src="./assets/j4-removebg-preview.png" alt="" class="bottle" />
<div class="bottles">
<div class="two-bottle">
<h5>
Buy 2kg Coco <br />
Sweets=Get 50% OFF <br />
<span class="price-bottle">Offer Price:150$</span>
</h5>
</div>
<button class="btn btn-products">
<a href="/">view all products</a>
</button>
<button class="btn"><a href="/">get 50% off</a></button>
<p class="customer">Our Customer</p>
<p class="review">Review</p>
<div class="reviews">
<div class="person">
<p class="name">Sumona Khan</p>
<div class="stars">
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
</div>
<p class="text">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Adipisci
qui suscipit ducimus a. Fugiat, iure consequatur.
</p>
</div>
<div class="photos">
<img src="./assets/girl-2961959_1280.jpg" alt="" class="photo1">
<img src="./assets/woman-1439909_1280.jpg" alt="" class="photo2">
</div>
</div>
<div class="footer">
<p class="slogan">
Delicious Food <br />
Lover Mood
</p>
</div>
</div>
<div class="socials">
<a href="https://www.facebook.com"><i class="fa-brands fa-facebook-f"></i></a>
<a href="https://www.instagram.com"><i class="fa-brands fa-instagram"></i></a>
</div>
</div>
</body>
</html>