-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcourses.html
More file actions
161 lines (158 loc) · 5.57 KB
/
courses.html
File metadata and controls
161 lines (158 loc) · 5.57 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
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
<!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="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200"
/>
<link rel="stylesheet" href="purged/style.css" />
<link rel="stylesheet" href="purged/pages/courses.css" />
</head>
<body>
<nav class="text-white active">
<div
class="container nav__container display-flex justify-between align-center"
>
<a href="index.html" class="logo text-ternary"><h4>Karim</h4></a>
<ul class="display-flex">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="courses.html">courses</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
<button class="open-menu-btn">
<span class="material-symbols-outlined"> menu </span>
</button>
<!-- <button class="close-menu-btn">
<span class="material-symbols-outlined"> close </span>
</button> -->
</div>
</nav>
<section class="courses">
<div class="container">
<h2 class="font-xl text-white display-flex flex-center">
Our Popular Courses
</h2>
<div class="wrapper text-white display-flex">
<article class="course">
<img src="images/course1.jpg" alt="course1" />
<div class="text">
<h5 class="font-lg">Responsive Social Media Website</h5>
<p class="font-xs">
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Hic a
inventore accusamus? Similique, minima architecto.
</p>
<a href="#" class="btn-danger">learn more</a>
</div>
</article>
<!-- ./course -->
<article class="course">
<img src="images/course2.jpg" alt="course1" />
<div class="text">
<h5 class="font-lg">Responsive Social Media Website</h5>
<p class="font-xs">
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Hic a
inventore accusamus? Similique, minima architecto.
</p>
<a href="#" class="btn-danger">learn more</a>
</div>
</article>
<!-- ./course -->
<article class="course">
<img src="images/course3.jpg" alt="course1" />
<div class="text">
<h5 class="font-lg">Responsive Social Media Website</h5>
<p class="font-xs">
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Hic a
inventore accusamus? Similique, minima architecto.
</p>
<a href="#" class="btn-danger">learn more</a>
</div>
</article>
<!-- ./course -->
<article class="course">
<img src="images/course1.jpg" alt="course1" />
<div class="text">
<h5 class="font-lg">Responsive Social Media Website</h5>
<p class="font-xs">
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Hic a
inventore accusamus? Similique, minima architecto.
</p>
<a href="#" class="btn-danger">learn more</a>
</div>
</article>
<!-- ./course -->
<article class="course">
<img src="images/course2.jpg" alt="course1" />
<div class="text">
<h5 class="font-lg">Responsive Social Media Website</h5>
<p class="font-xs">
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Hic a
inventore accusamus? Similique, minima architecto.
</p>
<a href="#" class="btn-danger">learn more</a>
</div>
</article>
<!-- ./course -->
<article class="course">
<img src="images/course3.jpg" alt="course1" />
<div class="text">
<h5 class="font-lg">Responsive Social Media Website</h5>
<p class="font-xs">
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Hic a
inventore accusamus? Similique, minima architecto.
</p>
<a href="#" class="btn-danger">learn more</a>
</div>
</article>
<!-- ./course -->
</div>
</div>
</section>
<footer>
<div class="container row text-white">
<div class="col">
<h4>Karim</h4>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Temporibus,
deserunt!
</p>
</div>
<div class="col">
<h4>Permlinks</h4>
<ul>
<li>Home</li>
<li>About</li>
<li>Courses</li>
</ul>
</div>
<div class="col">
<h4>Privacy</h4>
<ul>
<li>Privacy Polits</li>
<li>Terms and Conditions</li>
<li>Refund Policy</li>
</ul>
</div>
<div class="col">
<h4>Contact us</h4>
<span class="phone">+0192346077</span>
<span class="email">kimoomar007@gmail.com</span>
</div>
</div>
</footer>
<script src="js/main.js"></script>
</body>
</html>