-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
261 lines (252 loc) · 8.74 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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Studyloot</title>
<link
rel="shortcut icon"
href="./assets/images/favIcon.svg"
type="image/x-icon"
/>
<link rel="stylesheet" href="./assets/styles/waves.min.css" />
<link rel="stylesheet" href="./assets/styles/style.css" />
</head>
<body>
<!-- Preloader -->
<div class="preloader"></div>
<!-- Main Container Start -->
<div class="main" id="main">
<!-- Hero Seaction Start -->
<section class="heroSection">
<!-- Navbar Start -->
<header>
<div class="logoContainer">
<img src="./assets/images/Logo.svg" alt="Logo" />
</div>
<nav>
<ul class="navLinks">
<li>
<a href="#" class="navLink">
<button>Explore Now</button>
</a>
</li>
</ul>
</nav>
</header>
<!-- End of Navbar -->
<!-- Curved BG and Down Chervon Button -->
<div class="heroBg">
<div class="adjustBg"></div>
<div class="down">
<a href="#focus">
<img src="./assets/images/downButton.svg" alt="Down Arrow" />
</a>
</div>
</div>
<!-- Content of Herosection -->
<div class="heroContent">
<div class="content">
<div class="heading">Learn Better, Learn with studyloot.com</div>
<div class="para">
Stay ahead of the curve and get the skills you’ll need for the
jobs of the future. Come out of this crisis with higher-paying,
in-demand tech skills and new career options.
</div>
<div class="btns">
<a href="#">
<button class="expBtn">Explore Now</button>
</a>
<a href="#focus">
<button class="viewBtn">View Details</button>
</a>
</div>
</div>
<div class="images">
<img
src="./assets/images/heroImg.svg"
class="boyLap"
alt="Boy and Lap"
/>
<img src="./assets/images/html.svg" class="html" alt="HTML" />
<img src="./assets/images/js.svg" class="js" alt="JS" />
<img src="./assets/images/php.svg" class="php" alt="PHP" />
<img src="./assets/images/css.svg" class="css" alt="CSS" />
</div>
</div>
</section>
<!-- End of Hero Section -->
<!-- Focus Section Start -->
<section class="focusSection" id="focus">
<div class="contents">
<img src="./assets/images/focus.svg" alt="Students Can't Focus" />
<div class="content">
<div class="heading">Can't Focus on Codes?</div>
<div class="para">
The COVID-19 pandemic has affected educational systems worldwide,
leading to the near-total closures of schools, universities and
colleges.There are still billions of students those who does not
get proper study materials and references .
</div>
</div>
</div>
</section>
<!-- End of Focus Section -->
<!-- Quote Section Start -->
<section class="quoteSection">
<div class="quote">
<img
src="./assets/images/quoteLeft.svg"
class="quoteLeft"
alt="Left Quote"
/>
<img
src="./assets/images/quoteRight.svg"
class="quoteRight"
alt="Right Quote"
/>
</div>
<div class="content">
<div class="text">We have the <span class="typing"></span></div>
</div>
</section>
<!-- End of Quote Section -->
<!-- Dashboard Section Start -->
<section class="introSection">
<div class="contents">
<div class="content">
<div class="heading">Introducing Studyloot</div>
<div class="para">
Studyloot is an educational website created by a group of MCA
students for learning web technologies online. This includes
tutorials and references relating to HTML, JavaScript, CSS, PHP…….
</div>
</div>
<img src="./assets/images/dashboard.svg" alt="Studyloot Dashboard" />
</div>
</section>
<!-- End of Dashboard Section -->
<!-- Feartures Section Start -->
<section class="features">
<div class="cards">
<div class="card">
<img src="./assets/images/feature 1.svg" alt="" />
<div class="text">Learn by Doing</div>
</div>
<div class="card">
<img src="./assets/images/feature 2.svg" alt="" />
<div class="text">Easy Learing</div>
</div>
<div class="card">
<img src="./assets/images/feature 3.svg" alt="" />
<div class="text">Free Access</div>
</div>
<div class="card">
<img src="./assets/images/feature 4.svg" alt="" />
<div class="text">Learn Anywhere</div>
</div>
</div>
</section>
<!-- End of Features Section -->
<!-- Winner Section Start -->
<section class="winnerSection">
<div class="contents">
<img src="./assets/images/winner.svg" alt="Winner" />
<div class="content">
<div class="heading">A Platform Students Love</div>
<div class="para">
Studyloot helps you to learn programming language in simple and
understanding way with the help of lots of examples. We ensure
that Studtloot will definitely help you to reach the peak of
success along with your hardwork.
</div>
</div>
</div>
</section>
<!-- End of Winner Section -->
<!-- Testimonial Section Start -->
<section class="testimonials">
<div class="container">
<div class="quotes">
<img
src="./assets/images/quoteLeft.svg"
class="lq"
alt="Left Quote"
/>
<img
src="./assets/images/quoteRight.svg"
class="rq"
alt="Right Quote"
/>
</div>
<div class="title">We Influenced Some People</div>
<div class="slider-indicator">
<img src="./assets/images/student.png" alt="Student" data-id="0" />
<img
src="./assets/images/teacher.png"
class="active"
alt="Teacher"
data-id="1"
/>
<img
src="./assets/images/businessMan.png"
alt="Business Man"
data-id="2"
/>
</div>
<div class="slider">
<div class="slide">
<p>
I love this website, studyloot helps me a lot in learning
programming.
</p>
<div class="client-info">
<div class="name">Jane Cooper</div>
<span> ~Student, MCA </span>
</div>
</div>
<div class="slide active">
<p>
Awesome website, I used to recommend studyloot to my students ,
virtual learning also boost the self learning capabilities of
students.
</p>
<div class="client-info">
<div class="name">John Doe</div>
<span> ~Instructor, MCA </span>
</div>
</div>
<div class="slide">
<p>
This website is a great option for both beginners and experts,
good work guys.
</p>
<div class="client-info">
<div class="name">Simon Edwin</div>
<span> ~Founder, DevClash </span>
</div>
</div>
</div>
</div>
</section>
<!-- End of Testmonial Section -->
<!-- Footer Section Start -->
<footer>
<h3>
Made With <img
src="./assets/images/heart.svg"
alt="Heart"
/> By INT MCA 2017-2022
</h3>
</footer>
<!-- End of Footer Section -->
</div>
<!-- End of Main Container -->
<script src="./assets/js/jquery-3.2.1.min.js"></script>
<script src="./assets/js/waves.min.js"></script>
<script src="./assets/js/tilt.jquery.js"></script>
<script src="./assets/js/typed.min.js"></script>
<script src="./assets/js/lottie.js"></script>
<script src="./assets/js/app.js"></script>
</body>
</html>