forked from ayushsarode/Xypo-LearningApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
courses.html
227 lines (216 loc) · 11.3 KB
/
courses.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
<!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>Courses</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="courses.css" />
<link href="https://fonts.googleapis.com/css?family=Fira+Sans:300" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
<!-- Link for Bootstrap icon -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
</head>
<body>
<section>
<div class="container">
<a href="./index.html"><img src="images/Xypo1.png" class="logo" /></a>
</div>
</section>
<!--Side Nav-->
<section>
<nav id="sideNav">
<ul>
<li><a href="/index.html">HOME</a></li>
<li><a href="#about">ABOUT US</a></li>
<li><a href="#">FEATURES</a></li>
<li><a href="#courses">COURSES</a></li>
<li><a href="#offer">OFFER</a></li>
<li><a href="#contact">CONTACT</a></li>
</ul>
</nav>
<img src="images/menu.png" id="menubtn" />
</section>
<!--Welcome-->
<section class="container courses-welcome">
<div class="courses-header">
<h1>Level up your skills with one of our courses</h1>
<span class="square"></span>
<p>
Education is not just about going to school and getting a degree. It's about
widening your knowledge and absorbing the truth about life.
Knowledge is Power!
</p>
<button class="comman-btn">Explore our Courses</button>
<div class="line">
<span class="line-1"></span><br />
<span class="line-2"></span><br />
<span class="line-3"></span><br />
</div>
</div>
</section>
<!--Courses-->
<section class="container" id="courses">
<div class="courses-content">
<h1>Top Rated Courses</h1>
<div class="line">
<span class="line-1"></span><br />
<span class="line-2"></span><br />
<span class="line-3"></span><br />
</div>
<div class=" row gy-5 course-info">
<div class="col-sm-12 col-md-6 col-lg-4">
<div class="course-card">
<img src="/images/html.png" alt="HTML" style="width:100%">
<h1>HTML & CSS Crash Course</h1>
<div class="rating">
<span class="bi bi-star-fill"></span>
<span class="bi bi-star-fill"></span>
<span class="bi bi-star-fill"></span>
<span class="bi bi-star-fill"></span>
<span class="bi bi-star-fill"></span>
</div>
<p>HTML and CSS are the rudimentary components of web development. They provide the basic structure to the website, and learning them is too important if you are a beginner.</p>
<p><button class="comman-btn">ENROLL NOW</button></p>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-4">
<div class="course-card">
<img src="/images/javascript.png" alt="John" style="width:100%">
<h1>Introduction to javascript</h1>
<div class="rating">
<span class="bi bi-star-fill"></span>
<span class="bi bi-star-fill"></span>
<span class="bi bi-star-fill"></span>
<span class="bi bi-star-fill"></span>
<span class="bi bi-star"></span>
</div>
<p>Javascript is the scripting language too common in most of the web applications. Its layout is simple, and its implementation does not require much time to understand.</p>
<p><button class="comman-btn">ENROLL NOW</button></p>
</div>
</div>
<div class="col-sm-6 col-md-6 col-lg-4">
<div class="course-card">
<img src="/images/datastructures.png" alt="Data Structures">
<h1>Data Structures and Algorithms</h1>
<div class="rating">
<span class="bi bi-star-fill"></span>
<span class="bi bi-star-fill"></span>
<span class="bi bi-star-fill"></span>
<span class="bi bi-star-fill"></span>
<span class="bi bi-star"></span>
</div>
<p>Data Structures and Algorithms is all about collection of data, data storage and data retrieval in the easy accessibility mode. You can play with various data containers here and implement algorithms on them, irrespecrive of any language barriers. </p>
<p><button class="comman-btn">ENROLL NOW</button></p>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-4">
<div class="course-card">
<img src="/images/designprinciples.png" alt="John" style="width:100%">
<h1>SOLID Design Principles</h1>
<div class="rating">
<span class="bi bi-star-fill"></span>
<span class="bi bi-star-fill"></span>
<span class="bi bi-star-fill"></span>
<span class="bi bi-star-fill"></span>
<span class="bi bi-star-fill"></span>
</div>
<p>SOLID is one of the most popular sets of design principles in object-oriented software development. It’s a mnemonic acronym for :
Single Responsibility Principle,
Open/Closed Principle,
Liskov Substitution Principle,
Interface Segregation Principle,
Dependency Inversion</p>
<p><button class="comman-btn">ENROLL NOW</button></p>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-4">
<div class="course-card">
<img src="/images/php.png" alt="John" style="width:100%">
<h1>Python For Everybody</h1>
<div class="rating">
<span class="bi bi-star-fill"></span>
<span class="bi bi-star-fill"></span>
<span class="bi bi-star-fill"></span>
<span class="bi bi-star-fill"></span>
<span class="bi bi-star"></span>
</div>
<p>Python is a high-level, general-purpose programming language. Its design philosophy emphasizes code readability with the use of significant indentation. It supports multiple programming paradigms, including structured, object-oriented and functional programming. </p>
<p><button class="comman-btn">ENROLL NOW</button></p>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-4">
<div class="course-card">
<img src="/images/cloud.png" alt="John" style="width:100%">
<h1>Cloud Computing</h1>
<div class="rating">
<span class="bi bi-star-fill"></span>
<span class="bi bi-star-fill"></span>
<span class="bi bi-star-fill"></span>
<span class="bi bi-star"></span>
<span class="bi bi-star"></span>
</div>
<p>Cloud computing is the on-demand availability of computer system resources, especially data storage and computing power, without direct active management by the user. Large clouds often have functions distributed over multiple locations, each location being a data center.</p>
<p><button class="comman-btn">ENROLL NOW</button></p>
</div>
</div>
</div>
</div>
</section>
<!--Footer-->
<footer id="footer">
<div class="footer-top py-2">
<div class="container">
<div class="row container justify-content-center">
<img src="images/Xypo1.png" class="logo" style="width:130px;" />
</div>
<div class="row container justify-content-center">
<div class="col-lg-3 col-md-3 footer-info">
<div class="social-links mt-3">
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-twitter"></a>
<a href="#" class="fa fa-instagram"></a>
<a href="#" class="fa fa-youtube"></a>
</div>
</div>
</div>
<div class="row container justify-content-center">
<div class="col-lg-5 col-md-5 footer-links">
<ul>
<li class="hello"> <a href="/index.html">Home</a></li>
<li class="hello"> <a href="#about">About Us</a></li>
<li class="hello"> <a href="#">Features</a></li>
<li class="hello"> <a href="#courses">Courses</a></li>
<li class="hello"> <a href="#offer">Offer</a></li>
<li class="hello"> <a href="#contact">Contact Us</a></li>
</ul>
</div>
</div>
</div>
</div>
</h3>
<p class="">
<div class="container py-2">
<div class="credits">XyPo Learning App © 2022</a> </div>
</div>
</footer>
<script>
//hide and show side nav
let sideNav = document.getElementById("sideNav");
sideNav.style.right = "-290px";
menubtn.onclick = function () {
if (sideNav.style.right == "-290px") {
sideNav.style.right = "0";
} else {
sideNav.style.right = "-290px";
}
};
</script>
</body>
</html>