-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
263 lines (263 loc) · 11.5 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
262
263
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="wrapper-main">
<div class="navbar">
<div class="logo">
<h2>Pro Edu</h2>
</div>
<div class="navigation">
<a href="#">Home</a>
<a href="#">Courses</a>
<a href="#">Deals</a>
<a href="#">Success</a>
<a href="#">About</a>
<a href="#">Register</a>
</div>
</div>
<div class="container_learning">
<div class="container_learning_left">
<h1>Start learning with<br> us now</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing<br> elit. Ipsa laboriosam voluptates sed beatae?</p>
<button type="button" class="learning_btn">Start learning</button>
</div>
<div class="container_learning_right">
<img src="Hero.png">
</div>
</div>
<div class="popular_courses">
<h1>Discover Our Popular<br> Courses</h1>
<p>It is a long established fact that a reader will be distracted by the readable<br>
content of a page when looking at its layout.
</p>
<div class="courses_container">
<div class="courses_container_content">
<div class="courses_container_content_left">
<img src="Rectangle 19.png" >
</div>
<div class="courses_container_content_right">
<h2>Fundamental Of UI/UX Design</h2>
<p>Some quick example text to build on the card title<br>
and make up the bulk of the card.
</p>
<h3>Price : 20$</h3>
</div>
</div>
<div class="courses_container_content">
<div class="courses_container_content_left">
<img src="Rectangle 21.png" >
</div>
<div class="courses_container_content_right">
<h2>Fundamental Of UI/UX Design</h2>
<p>Some quick example text to build on the card title<br>
and make up the bulk of the card.
</p>
<h3>Price : 20$</h3>
</div>
</div>
<div class="courses_container_content">
<div class="courses_container_content_left">
<img src="Rectangle 23.png" >
</div>
<div class="courses_container_content_right">
<h2>Fundamental Of UI/UX Design</h2>
<p>Some quick example text to build on the card title<br>
and make up the bulk of the card.
</p>
<h3>Price : 20$</h3>
</div>
</div>
<div class="courses_container_content">
<div class="courses_container_content_left">
<img src="Rectangle 25.png" >
</div>
<div class="courses_container_content_right">
<h2>Fundamental Of UI/UX Design</h2>
<p>Some quick example text to build on the card title<br>
and make up the bulk of the card.
</p>
<h3>Price : 20$</h3>
</div>
</div>
<div class="courses_container_content">
<div class="courses_container_content_left">
<img src="Rectangle 27.png" >
</div>
<div class="courses_container_content_right">
<h2>Fundamental Of UI/UX Design</h2>
<p>Some quick example text to build on the card title<br>
and make up the bulk of the card.
</p>
<h3>Price : 20$</h3>
</div>
</div>
<div class="courses_container_content">
<div class="courses_container_content_left">
<img src="Rectangle 29.png" >
</div>
<div class="courses_container_content_right">
<h2>Fundamental Of UI/UX Design</h2>
<p>Some quick example text to build on the card title<br>
and make up the bulk of the card.
</p>
<h3>Price : 20$</h3>
</div>
</div>
</div>
<button type="button" class="course_btn">See More Courses</button>
</div>
<div class="explore">
<div class="explore-image-section">
<img src="Rectangle 8.png">
</div>
<div class="explore-text-section">
<h1>Explore The elearning<br> Institute</h1>
<p>
There are many variations of passages of Lorem Ipsum available, but the
majority have suffered alteration in some form, by injected humour, or
randomised words which don't look even slightly believable. If you are going
to use a passage of Lorem Ipsum, you need to be sure.
</p>
<p>
Anything embarrassing hidden in the middle of text. All the Lorem Ipsum
generators on the Internet tend to repeat predefined.
</p>
<button class="read" type="button">Read More</button>
</div>
</div>
<div class="register">
<div class="register-left-section">
<h1>Ready to join?</h1>
<p>
It is a long established fact that a reader will be distracted by the<br>
readable content of a page when looking at its layout.
</p>
</div>
<div class="register-right-section">
<button type="button" class="register-button">Register Now</button>
</div>
</div>
<div class="students">
<div class="students-text-section">
<h1>Meet Our Successfull<br> students</h1>
<p>
It is a long established fact that a reader will be distracted by the <br>
readable content of a page when looking at its layout.
</p>
</div>
<div class="students-container">
<div class="student">
<div class="student-image">
<img src="Rectangle 31.png" width="250px" height="240px">
</div>
<div class="student-info">
<h4>Awlad Hossain</h4>
<h5>UI/UX Designer</h5>
</div>
</div>
<div class="student">
<div class="student-image">
<img src="Rectangle 6.png" width="250px" height="240px">
</div>
<div class="student-info">
<h4>Jannatul Islam</h4>
<h5>Motion Designer</h5>
</div>
</div>
<div class="student">
<div class="student-image">
<img src="Rectangle 33.png" width="250px" height="240px">
</div>
<div class="student-info">
<h4>Imran Hossain</h4>
<h5>Graphic Designer</h5>
</div>
</div>
<div class="student">
<div class="student-image">
<img src="Rectangle 6-1.png" width="250px" height="240px">
</div>
<div class="student-info">
<h4>Nishi Akter</h4>
<h5>Web Developer</h5>
</div>
</div>
</div>
<button type="button" class="learning_btn">View All</button>
</div>
<div class="feedback">
<h1>Some Students Feedback</h1>
<h3>
It is a long established fact that a reader will be distracted by the readable<br>
content of a page when looking at its layout.
</h3>
<div class="student-feedback-container">
<div class="student-feedback">
<img src="Group 4879.png" height="30px" width="30px">
<p>
There are many variations of passages of Lorem Ipsum available, but
the majority have suffered alteration in some form, by injected
humour, or randomised words which don't look even slightly
believable. If you are going to use a passage of Lorem.
</p>
<div class="student-details">
<img src="Ellipse 1.png" width="45px" height="50px">
<div class="name">
<h4>Awlad Hossain</h4>
<h6>UI Designer</h6>
</div>
</div>
</div>
<div class="student-feedback">
<img src="Group 4879.png" height="30px" width="30px">
<p>
There are many variations of passages of Lorem Ipsum available, but
the majority have suffered alteration in some form, by injected
humour, or randomised words which don't look even slightly
believable. If you are going to use a passage of Lorem.
</p>
<div class="student-details">
<img src="Ellipse 1-1.png" width="45px" height="50px">
<div class="name">
<h4>Shanta Akter</h4>
<h6>Graphic Designer</h6>
</div>
</div>
</div>
</div>
</div>
<div class="companies">
<h1>Trusted by over 800+ companies</h1>
<div class="companies-container">
<img src="Group.png">
<img src="udemy-2 1.png">
<img src="fedex-express-6 1.png">
<img src="Group 10110.png">
<img src="logo-elecom-1 1.png">
<img src="Group 10110.png">
</div>
</div>
<div class="footer">
<h2>Pro Edu</h2>
<p>
Office 41, Zawaya Buildin, Ghala Muscat,<br>
Sultanate of Oman
</p>
<p>
Privacy Ploicy | Terms of use
</p>
<div class="socials">
<img src="Group 10060.png">
<img src="Group 10059.png">
<img src="Group 10058.png">
</div>
</div>
</div>
</body>
</html>