forked from kokonior/HTML-Projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtext.html
170 lines (139 loc) · 5.19 KB
/
text.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
<!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>Erudite_Academy</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans&family=Roboto:wght@400;500&family=Ubuntu:wght@400;500&display=swap" rel="stylesheet">
</head>
<body>
<nav id="navbar">
<div id="pic1">
<img src="PIC_2.png" alt="Erudite_Academy.com">
</div>
<ul>
<li class="item"> <a href="#">Home</a></li>
<li class="item"> <a href="#">About Us</a></li>
<li class="item"> <a href="#">Our Partners</a></li>
<li class="item"> <a href="#">Contact Us</a></li>
</ul>
</nav>
<section id="home">
<h1 class="h-primary">Welcome to Erudite Academy</h1>
<button class="btn">Join Classes Now</button>
</section>
<section class="services-container">
<h1 class="h-primary c1">About Us</h1>
<div id="services">
<div class="box">
<img src="img_1.png" alt="">
<h2 class="h-secondary center"> Online Classes</h2>
<p class="center"> Join our Live Sessions for class 1-12 and get assistance on all subjects. Connect with our mentors to
in order to understand theories and concepts with visual effect and make studies more interesting.
</p>
</div>
<div class="box">
<img src="img_2.png" alt="">
<h2 class="h-secondary center">Study Materials</h2>
<p class="center"> Get subject notes, question bank, previous
year paper, practice papers and much more...for alltopics on our website. Register yourself on our portal and get
access to our materials absolutely free for the first 12 months.
</p>
</div>
<div class="box">
<img src="img_3.png" alt="">
<h2 class="h-secondary center">Assignments</h2>
<p class="center"> Solve all the problems and Assignments given to you by our mentors and becoame an A+ grader in your classroom.
</p>
</div>
</section>
<div id="services">
<div class="box">
<img src="img_4.png" alt="">
<h2 class="h-secondary center">Doubt Solving</h2>
<p class="center"> Having trouble in solving your homework and project???... Now get 24/7 guidance on all subject matters by
our mentors. Register yourself for the doubt solving sessions quickly.
</p>
</div>
<div class="box">
<img src="img_5.png" alt="">
<h2 class="h-secondary center">Regular Class Tests</h2>
<p class="center"> Prepare for your examinations by attending weekly class tests prepared by your faculty. After completing the
test, your scores will be made available on your portal. Top performers in the test will receive free goodies.
</p>
</div>
<div class="box">
<img src="img_6.png" alt="">
<h2 class="h-secondary center">User Manual</h2>
<p class="center"> Read the given user manual regarding all the services provided by us. Login in to our portal today to enjoy the
benefits of online teaching.
</p>
</div>
</section>
</section>
</div>
</div>
</section>
<section id="client-section">
<h1 class="h-primary c1">Our Partners</h1>
<div id="clients">
<div class="client-item">
<img src="img_10.png" alt="Our Clients">
</div>
<div class="client-item">
<img src="img_8.png" alt="Our Clients">
</div>
<div class="client-item">
<img src="img_9.png" alt="Our Clients">
</div>
</div>
</section>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<section id="contact">
<h1 class="h-primary c1">Contact Us</h1>
<div id="contact-box">
<form action="">
<div class="form-group">
<label for="name">Name: </label>
<input type="text" name="name" id="name" placeholder="Enter your name">
</div>
<div class="form-group">
<label for="email">Email Id: </label>
<input type="email" name="name" id="email" placeholder="Enter your email id">
</div>
<div class="form-group">
<label for="phone">Mobile Number: </label>
<input type="phone" name="name" id="phone" placeholder="Enter your mobile number">
</div>
<div class="form-group">
<label for="message">Message: </label>
<textarea name="message" id="message" cols="30" rows="10"></textarea>
</div>
</form>
</div>
</section>
<footer>
<div class="center">
Copyright © www.Erudite_Academy.com. All rights reserved.
</div>
</footer>
</body>
</html>