-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcourses.html
More file actions
153 lines (132 loc) · 5.13 KB
/
courses.html
File metadata and controls
153 lines (132 loc) · 5.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title> courses</title>
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" /> -->
<link rel="stylesheet" href="Assets/css/course.css" />
</head>
<body>
<header>
<div class="logo-title">
<img src="Assets/images/logo.jpeg" alt="Logo" class="logo">
<h1>Akshay Udbhav E-Learning</h1>
</div>
<nav>
<ul>
<button class="logout-btn">
Logout
</button>
<button>
<a href="discussion.html">Ask your doubts</a>
</button>
<button>
<a href="contact.html">Contact</a>
</button>
<!-- <li><a href="#T&C">Terms & Conditions</a></li> -->
</ul>
</nav>
</header>
<section>
<div class="container">
<div class="heading">
<h1>Our Courses</b></u></h1>
</div>
<div class="row">
<!-- 1th product -->
<div class="col">
<div class="imgContainer">
<img src="Assets/images/physics.jpeg" alt="image" />
</div>
<div class="title">
<h2>Physics</h2>
</div>
<div class="button-container">
<button><a href="https://drive.google.com/drive/folders/1ZBVYh1P4N4dvB3w9QIIM00I8W_ogmvLd?usp=sharing">visit</a></button>
</div>
</div>
<!-- 2nd product -->
<div class="col">
<div class="imgContainer">
<img src="Assets/images/chemistry.jpeg" alt="image" />
</div>
<div class="title">
<h2>Chemistry</h2>
</div>
<div class="button-container">
<button><a href="https://drive.google.com/drive/folders/1_ZlmFKCEgC-MAe2T6T2ax_i8tQ6lDC-f?usp=sharing">visit</a></button>
</div>
</div>
<!-- 3rd product -->
<div class="col">
<div class="imgContainer">
<img src="Assets/images/Math.jpeg" alt="image" />
</div>
<div class="title">
<h2>Maths</h2>
</div>
<div class="button-container">
<button><a href="https://drive.google.com/drive/folders/1P5qOQPZ9VO06_FO_y6qbMVF80LcFkiOU?usp=sharing">visit</a></button>
</div>
</div>
<!-- 4th product -->
<div class="col">
<div class="imgContainer">
<img src="Assets/images/biology.jpeg" alt="image" />
</div>
<div class="title">
<h2>Biology</h2>
</div>
<div class="button-container">
<button><a href="https://drive.google.com/drive/folders/1KotJUU9pDQdJOr5wvsM6WqR_tMln2w74?usp=sharing">visit</a></button>
</div>
</div>
<!-- 5th product -->
<!-- <div class="col">
<div class="imgContainer">
<img src="Assets/images/jee.jpeg" alt="image" />
</div>
<div class="title">
<h2>JEE</h2>
</div>
<div class="para">
<p>
Coming Soon!!
</p>
</div>
<div class="button-container">
<button><a href="#">Join</a></button>
</div>
</div>
<div class="col">
<div class="imgContainer">
<img src="Assets/images/neet.jpeg" alt="image" />
</div>
<div class="title">
<h2>NEET UG</h2>
</div>
<div class="para">
<p>
Coming Soon!!
</p>
</div>
<div class="button-container">
<button><a href="#">Join</a></button>
</div>
</div>-->
</div>
</div>
</section>
<!-- Footer Section -->
<footer>
<p> © 2024 Akshay Udbhav E-Learning. All rights reserved.</p>
</footer>
<script>
const logoutBtn=document.querySelector(".logout-btn")
logoutBtn.addEventListener("click",()=>{
window.location.replace("index.html")
})
</script>
</body>
</html>