forked from HacktoberfestSIT/Edu-Code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
135 lines (124 loc) · 5.81 KB
/
index.html
File metadata and controls
135 lines (124 loc) · 5.81 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Educode</title>
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" href="img/logo.png">
<script src="https://cdn.jsdelivr.net/gh/cferdinandi/smooth-scroll/dist/smooth-scroll.polyfills.min.js"></script>
</head>
<body>
<!-- TODO: Add a responsive navbar -->
<section id="header" style="background-image: url('img/background.png');">
<div class="container">
<h1>Edu Code</h1>
<div class="header-text">
<h1>The purpose is to <br> teach, bring learning to people</h1>
<span class="square"></span>
<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</p>
<a href="#about"><button class="common-btn">Read More</button></a>
<div class="line">
<span class="line-1"></span> <br>
<span class="line-2"></span> <br>
<span class="line-3"></span>
</div>
</div>
</div>
</section>
<!-- About Us -->
<section id="about">
<div class="about-left-col">
<img src="img/about.png" alt="abt-img">
</div>
<div class="about-right-col">
<div class="about-text">
<h1>About Us</h1>
<span class="square"></span>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it oer 2000 years old. Richard McClintock, a Latin professor at Hampden-Syndey College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cities of the word in classical literature, discovered the undoubtable source.</p><br><br>
<div class="line">
<span class="line-1"></span> <br>
<span class="line-2"></span> <br>
<span class="line-3"></span>
</div>
<h2>"Learning is not attached by chance, it must be sought for with ardor and attended to with diligence"</h2>
<h3> -Anonymous - </h3>
</div>
</div>
</section>
<!-- Features -->
<section id="features">
<div class="feature-row">
<div class="feature-col">
<img src="img/pic-1.png" alt="">
<h4>Learn Anywhere</h4>
<p>Switch between your computer, tablet or mobile</p>
</div>
<div class="feature-col">
<img src="img/pic-2.png" alt="">
<h4>Expert Teachers</h4>
<p>Learn from industry experts who are passionate about teaching.</p>
</div>
<div class="feature-col">
<img src="img/pic-3.png" alt="">
<h4>Unlimited Resources</h4>
<p>Choose what you'd like to learn from our extensive subscription library</p>
</div>
</div>
<div class="feature-btn">
<div class="line">
<span class="line-1"></span><br>
<span class="line-2"></span><br>
<span class="line-3"></span>
</div>
<a href="#courses"><button class="common-btn">Start Free Trial</button></a>
</div>
</section>
<!-- Courses -->
<section id="courses">
<div class="container course-row">
<div class="course-left-col">
<div class="course-text">
<h1>Browse our top <br>courses</h1>
<span class="square"></span>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature
from 45 BC, making it oer 2000 years old. Richard McClintock, a Latin professor at Hampden</p>
<a href="pricing.html" target="_blank"><button class="common-btn">View Pricing</button></a>
<div class="line">
<span class="line-1"></span><br>
<span class="line-2"></span><br>
<span class="line-3"></span>
</div>
</div>
</div>
<div class="course-right-col">
<img src="img/course.png" alt="">
</div>
</div>
</section>
<!-- Offers -->
<section id="offer">
<div class="about-left-col">
<img src="img/offer.png" alt="offers-img">
</div>
<div class="about-right-col">
<div class="about-text">
<h1>Limitless learning, <br>limitless possibilities</h1>
<span class="square"></span>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it oer 2000 years old. Richard McClintock, a Latin professor at Hampden-Syndey College in Virginia.</p>
<a href="#contact"><button class="common-btn">Start Free Trial</button></a>
<div class="line">
<span class="line-1"></span><br>
<span class="line-2"></span><br>
<span class="line-3"></span>
</div>
</div>
</div>
</section>
<!-- TODO : Make a Footer -->
<!-- TODO : Add Social Icons -->
<script src="js/smooth-scroll.min.js"></script>
<script src="js/smooth-scroll.polyfills.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>