-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
113 lines (100 loc) · 5.03 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
<!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">
<link rel="icon" type="image/x-icon" href="./static/logo/icon.png">
<title>ReLearn</title>
<link rel="stylesheet" href="./css/style.css">
<script defer src="./javaScript/script.js"></script>
</head>
<body>
<nav>
<ul class="left">
<li><a href="#"><img src="./static/logo/icon.png" alt="LR" class="icon"></a></li>
<li><a href="#whyus" onclick="displayAbout()">About</a></li>
<li><a href="./login.html">Courses</a></li>
</ul>
<ul class="searchBox">
<input type="text" placeholder="Search here">
<li><img src="./static/logo/search" alt="Search" class="icon"></li>
</ul>
<ul class="right">
<li><img src="./static/logo/call.png" alt="9876543210" id="copyPn" onclick="copyPn()" class="icon"></li>
<li onclick="displayLogin()"><a href="#whyus"> Login</a></li>
</ul>
</nav>
<section id="firstSection">
<div class="background">
<div class="heading">For every student,<br>
every classroom.<br>
Real results.</div>
<div id="wlcm">We welcome the online student to our website with good offers.<br> Do have a thorough look
into
the courses we provide to select the one best for you.</div>
</div>
<div class="why">Why iEducate ?</div>
<div id="subwhy">Your One Stop
Destination For Success</div>
<div id="whyus">
<div id="whyusControl" style="position: sticky;top: 15vh;height: 0;"></div>
<div class="card">
<div class="wsimg"><img src="images/banner.jpg" alt=""></div>
<div class="whyusinfo">
<div class="heading-sm">Live / Scheduled Lectures</div>
<div class="content"> Learning is an important step for achieving dreams in a student's journey. We
encourage the student
to explore the concept in depth instead of memorizing. The live lectures help us in learning the
needs of the students and motivates the students to be creative and be passionate learners.
</div>
</div>
</div>
<div class="card">
<div class="wsimg"><img src="images/banner.jpg" alt=""></div>
<div class="whyusinfo">
<div class="heading-sm">Live Doubt Solving Sessions</div>
<div class="content">At iEducate we always encourage students to ask questions. We have created an
atmosphere where students don't hesitate to ask their doubts. We firmly believe in More you ask,
the more you learn.
</div>
</div>
</div>
<div class="card">
<div class="wsimg"><img src="images/banner.jpg" alt=""></div>
<div class="whyusinfo">
<div class="heading-sm">Structured And Targeted Study Material</div>
<div class="content"> Explore the art of concept with our structured material with intelligent
question tackling and problem solving skills.
</div>
</div>
</div>
<div class="card">
<div class="wsimg"><img src="images/banner.jpg" alt=""></div>
<div class="whyusinfo">
<div class="heading-sm">Tests On Regular Basis For Progress Tracking</div>
<div class="content"> It is a set of test papers designed to make the student comfortable with all
possible varieties of questions along with the various ways in which the same question can be
put in order to make the student sweat in the exam hall.The problems involve multi-dimensional
thinking at a time.
</div>
</div>
</div>
</div>
</section>
<div id="secondSection" onmouseleave="displayLoginOnce()">
<div id="teacher">
<div id="teacherimg"><img src="images/teacher.jpg" alt="teacher image"></div>
<div id="teachertxt">
<div id="teacherheading2"><span>TEACHERS</span></div>
<div class="headingteacher"> “I'm finally able to truly differentiate my classroom. This has been
priceless for my students' engagement.”</div> <br>
<div class="">We empower teachers to support their entire classroom. 90% of teachers who have used
iEducate
have found us effective.</div>
</div>
</div>
</div>
<footer>copyright © iEducate . All rights reserved.</footer>
</body>
</html>