-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbellIcon.html
76 lines (66 loc) · 3.18 KB
/
bellIcon.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./styles/bellIcon.css">
<link rel="stylesheet" href="./homepageFooter/footer.css">
</head>
<body>
<!-- navbar codes start -->
<div id="navbar">
<a href="./index.html"><img src="https://cdn2.stylecraze.com/wp-content/uploads/static-content/logos/sc-logo.png.webp" alt="logo image"></a>
</div>
<!-- navbar codes ends -->
<!-- headings codes start -->
<div id="heading">
<h3>Stay updated with our push notifications!</h3>
<p>Subscribe to the below packs to receive daily recommendations on fitness, diet, and nutrition.</p>
</div>
<!-- headings codes ends -->
<!-- table codes start -->
<div id="table-container">
<div>
<img src="https://cdn2.stylecraze.com/wp-content/uploads/2022/01/Diet-tips.jpg.webp" alt="">
<h4 class="heading4">Diet Tips</h4>
<p class="bellpera">Simple, effective diet tips to help you with weight loss and up your health game.</p>
<button class="subscribe">Subscribe</button>
</div>
<div>
<img src="https://cdn2.stylecraze.com/wp-content/uploads/2022/01/Gym-workouts.jpg.webp" alt="">
<h4 class="heading4">Gym Workouts</h4>
<p class="bellpera">The gym at your fingertips! Keep your body in shape with these effective workouts.</p>
<button class="subscribe">Subscribe</button>
</div>
<div>
<img src="https://cdn2.stylecraze.com/wp-content/uploads/2022/01/Fitness-Formula-new.jpg.webp" alt="">
<h4 class="heading4">Fitness Formula</h4>
<p class="bellpera">Step-by-step exercises to help you lose weight, tone your body, improve your health.</p>
<button class="subscribe">Subscribe</button>
</div>
<div>
<img src="https://cdn2.stylecraze.com/wp-content/uploads/2021/12/iStock-1215073452-2.jpg.webp" alt="">
<h4 class="heading4">Know Your Ingredients</h4>
<p class="bellpera">Did you know that onions can improve sleep and reduce stress? Know more such useful facts about ingredients used in everyday life.</p>
<button class="subscribe specialbell">Subscribe</button>
</div>
</div>
<!-- table codes ends -->
<div id="bottom_contain">
<p id="listpera">How To Subscribe/Unsubscribe</p>
<ul class="marker">
<li class="list-no">Click on the Subscribe button below the pack you like.</li>
<li class="list-no">You will receive daily push notifications based on the interests you have selected.</li>
<li class="list-no">ou can unsubscribe and resubscribe to any pack, anytime.</li>
</ul>
<p class="backarticle"><a class = "none" href="#">Go Back to The Articles</a></p>
</div>
<div id="footer"></div>
</body>
</html>
<script type="module">
import footer from "./homepageFooter/components/footer.js"
document.querySelector("#footer").innerHTML = footer()
</script>