-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (90 loc) · 2.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="./assets/felna-favicon.jpeg" type="image/x-icon" />
<meta
name="description"
content="Felna is a leading waste management company in Bangladesh, dedicated to sustainable practices. We implement a comprehensive recycling chain, empowering communities to reduce waste through education and innovative solutions. Our 3R approach (Reduce, Reuse, Recycle) promotes a cleaner, greener future . Discover how Felna's expertise and commitment are driving positive change."
/>
<title>felna | Reduce Reuse Recycle</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<nav>
<ul>
<a href="#">
<li><img id="logo" src="./assets/felna-logo.jpeg" alt="" /></li>
</a>
<a href="#">
<li>Home</li>
</a>
<a href="/about.html">
<li>About</li>
</a>
<a href="#">
<li>Events</li>
</a>
<a href="#">
<li>Blog</li>
</a>
<a href="#"><li>Scrap Price</li></a>
<a href="#">
<li>Contact Us</li>
</a>
<li><i class="fa-solid fa-moon" id="icon"></i></li>
</ul>
</nav>
<main class="container">
<img
class="coming-soon-img"
src="./assets/coming-soon.png"
alt="coming soon image"
/>
</main>
<footer>
<div class="footer-content">
<p class="address">1042/1175 Kadamtoly Chattogram Bangladesh</p>
<p class="copyright">© felna 2024</p>
<div class="social-media-icon">
<a href="#">
<i class="fab fa-facebook"></i>
</a>
<a href="">
<i class="fab fa-youtube"></i>
</a>
<a href="">
<i class="fab fa-linkedin"></i>
</a>
<a href="">
<i class="fab fa-instagram"></i>
</a>
</div>
</div>
</footer>
<script>
let icon = document.getElementById("icon");
let sun = document.getElementById("sun");
icon.onclick = function () {
document.body.classList.toggle("dark-theme");
if (document.body.classList.contains("dark-theme")) {
// Change the icon class to the sun icon
icon.classList.remove("fa-solid", "fa-moon");
icon.classList.add("fa-regular", "fa-sun");
} else {
// Change the icon class back to the moon icon
icon.classList.remove("fa-regular", "fa-sun");
icon.classList.add("fa-solid", "fa-moon");
}
};
</script>
</body>
</html>