-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
162 lines (155 loc) · 5.46 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Bio Care - Your ultimate biology guide to excellence with expert-led resources."
/>
<meta
name="keywords"
content="Biology, Bio Care, Education, Online Learning, Biology Notes, Study"
/>
<meta name="author" content="Abhijit" />
<title>Bio Care - The Ultimate Biology</title>
<link rel="stylesheet" href="style.css" />
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon" />
<script
src="https://kit.fontawesome.com/d8373423c5.js"
crossorigin="anonymous"
></script>
</head>
<body>
<nav>
<a href="index.html" aria-label="Home">
<img src="images/logo.png" class="logo" alt="Bio Care Logo" />
</a>
<ul>
<div class="links">
<a href="index.html"><li>Home</li></a>
<a href="about.html"><li>About</li></a>
<a href="course.html"><li>Courses</li></a>
<a href="gallery.html"><li>Gallery</li></a>
<a href="events.html"><li>Events</li></a>
<a href="contact.html"><li>Contact Us</li></a>
</div>
<div class="btn">
<a href="signup.html"
><button id="signupButton" aria-label="Sign Up">Sign Up</button></a
>
<a href="login.html"
><button id="loginButton" aria-label="Log In">Log In</button></a
>
</div>
</ul>
<button class="toggle"><i class="fa-solid fa-bars"></i></button>
</nav>
<div class="home">
<div class="left">
<h4>Bio Care is always with you</h4>
<h1>Your Guide to Excellence</h1>
<p>
With Bio Care, begin your journey to success. Enroll now for
comprehensive learning and achieving excellence with us.
</p>
<a href="signup.html"
><button id="joinUsButton" aria-label="Join Us">Join Us</button></a
>
</div>
<div class="right">
<img src="images/home-1.png" alt="Biology Education Concept" />
</div>
</div>
<div class="why">
<h3>Why Bio Care?</h3>
<!-- Points Section -->
<div class="points point1">
<div class="left">1</div>
<div class="right">
<h5>5+ Years of Experience</h5>
<p>
Our target content creators usually have 8-10 years of experience
</p>
</div>
</div>
<div class="points point2">
<div class="left">2</div>
<div class="right">
<h5>Guaranteed Results</h5>
<p>Remove the roadblock and see the change within 30 days</p>
</div>
</div>
<div class="points point3">
<div class="left">3</div>
<div class="right">
<h5>Easy Learning</h5>
<p>You won’t just memorise, you’ll understand the concepts</p>
</div>
</div>
</div>
<div class="offers">
<h3>What We Offer</h3>
<!-- Offers Section -->
<div class="offer">
<div class="offer1">
<i class="fa-solid fa-users"></i>
<h2>Group Discussions</h2>
<p>
Get dedicated group discussions and doubt solving sessions in
regular basis
</p>
</div>
<div class="offer2">
<i class="fa-brands fa-youtube"></i>
<h2>Online Sessions</h2>
<p>
Learn with videos, tests, quizzes, interactive lessons, games and
more
</p>
</div>
<div class="offer3">
<i class="fa-solid fa-book"></i>
<h2>Curated Courses</h2>
<p>
Access courses especially curated for your needs. Learn at your own
pace
</p>
</div>
<div class="offer4">
<i class="fa-solid fa-graduation-cap"></i>
<h2>Simplified Experience</h2>
<p>Focussed learning mode for simple yet powerful communication</p>
</div>
</div>
</div>
<div class="contact">
<div class="left">
<img src="images/logo.png" alt="Bio Care Logo" />
</div>
<div class="address">
<!-- Contact Details -->
<p>
<i class="fa-solid fa-location-dot"></i> Bio Care, Kotulpur Netaji
More (near Kotulpur Police Station) Kotulpur, Bankura, WB-722141
</p>
<p><i class="fa-solid fa-phone"></i> +91 84366 51955 +91 89182 92956</p>
<p><i class="fa-solid fa-envelope"></i> biocare545@gmail.com</p>
<div class="links">
<a href="https://www.facebook.com/profile.php?id=100089199731297" target="_blank"><i class="fa-brands fa-facebook"></i></a>
<a href="https://www.instagram.com/bio_care_official?utm_source=ig_web_button_share_sheet&igsh=ZDNlZDc0MzIxNw==" target="_blank"><i class="fa-brands fa-square-instagram"></i></a>
<a href="https://t.me/+XXiy0Ec4KLc1N2Zl" target="_blank"><i class="fa-brands fa-telegram"></i></a>
<a href="https://youtube.com/channel/UChz520YFerHoIPsVUngvLLA" target="_blank"><i class="fa-brands fa-youtube"></i></a>
</div>
</div>
</div>
<footer>
<p>Made with <i class="fa-solid fa-heart"></i> by Abhijit Das</p>
</footer>
<button id="backToTop" aria-label="Back to Top">
<i class="fa-solid fa-arrow-up"></i>
</button>
<script src="login-logout.js"></script>
<script src="script.js"></script>
</body>
</html>