-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcourses.html
117 lines (90 loc) · 3.56 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="images/logo-title.png" type="logo-img">
<title>courses</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
<link rel="stylesheet" href="style.css">
<!-- <script src="javasc1.js"></script> -->
</head>
<body>
<!-- Header -->
<header class="header">
<div id="shadow">
</div>
<section class="flex">
<!-- We havent added logo name instead we added logo class(so needed to change logo class to logo-img) -->
<img class="logo-img" src="images/logo.png" alt="">
<form action="" method="post" class="search-form" id="ssearch-form">
<input type="text" name="search_box" placeholder="search courses...." required maxlength="100">
<button type="submit" class="fas fa-search"></button>
</form>
<div class="icons">
<div id="menu-btn" class="fas fa-bars"></div>
<div id="search-btn" class="fas fa-search"></div>
<div id="user-btn" class="fas fa-user"></div>
<div id="toggle-btn" class="fas fa-sun"></div>
</div>
<div id="pprofile" class="profile">
<img src="images/profile-bhaviksir-img.jpeg" alt="">
<h3>Bhavik Sir</h3>
<span>Student</span>
<a href="profile.html" class="btn">view profile</a>
<div class="flex-btn">
<a href="login.html" class="option-btn">login</a>
<a href="register.html" class="option-btn">register</a>
</div>
</div>
</section>
</header>
<!-- side-bar -->
<div class="side-bar" id="sside-bar">
<div class="close-side-bar" id="cclose">
<i class="fas fa-times"></i>
</div>
<div class="profile2">
<img src="images/profile-bhaviksir-img.jpeg" alt="">
<h5>Bhavik Sir</h5>
<h5 id="std">Student</h5>
<a href="profile.html" id="btn2" class="btn">view profile</a>
<nav class="icons2" class="navbar">
<div>
<a href="home.html">
<i class="fas fa-home"><span>home</span>
</i>
</a>
</div>
<div>
<a href="about.html">
<i class="fas fa-question"><span> about us</span>
</i>
</div>
<div>
</a><a href="courses.html">
<i class="fas fa-graduation-cap"><span>courses</span>
</i>
</a>
</div>
<div>
<a href="teachers.html">
<i class="fas fa-chalkboard-user"><span>teachers</span>
</i>
</div>
</a>
<div>
<a href="contact.html">
<i class="fas fa-phone"><span>contact us</span>
</i>
</a>
</div>
</nav>
</div>
</div>
<!-- footer -->
<footer class="footer">
© copyright @ 2023 by <span>Gurukul </span> | All rights reserved!
</footer>
<script src="javasc.js"></script>
</body>
</html>