-
Notifications
You must be signed in to change notification settings - Fork 0
/
link_teacher.html
47 lines (41 loc) · 1.42 KB
/
link_teacher.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
<!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" type="text/css" href="Link.css">
</head>
<body>
<header>
<h1>Courses for Teacher</h1>
<nav>
<ul>
<li><a href="student-profile.html">Student name</a></li>
<li><a href="create-teacher-course.html">Create a new course</a></li>
</ul>
</nav>
</header>
<div class="container">
<div class="course">
<img src="Course1.jpg" alt="Course 1" class="course1">
<div class="course-info">
<h2>11 FREE AI Courses To Become an AI Developer in 2023 🔥| Earn 15 LPA | Best Courses</h2>
<p>This is the description of Course 1.</p>
<a href="https://www.youtube.com/watch?v=LAuDCmiYDPk">Click here to view</a>
</div>
</div>
<div class="course">
<img src="Course2.JPG" alt="Course 2" class="course2">
<div class="course-info">
<h2>Detailed Roadmap for Machine Learning | Free Study Resources | Simply Explained</h2>
<p>This is the description of Course 2.</p>
<a href="https://www.youtube.com/watch?v=1vsmaEfbnoE">clikc here to view</a>
</div>
</div>
</div>
<footer>
<p>© 2024 XYZ College. All rights reserved.</p>
</footer>
</body>
</html>