-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCourse.html
34 lines (28 loc) · 1.14 KB
/
Course.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Edu_Wizard|Courses</title>
<link rel="stylesheet" href="css\Courses.css">
</head>
<body>
<main class="container">
<section class="main-video">
<video src="videos/Introduction.mp4" controls autoplay muted></video>
<h3 class="title">Title of the playing Video.</h3>
<P>Purchase the course to watch the full playlist</P>
<button onclick="window.location.href = 'checkout.html';" type="button" class="download-button">Pay Now</button>
<button onclick="window.location.href = 'notes.html';" type="button" class="download-button">View Notes</button>
</section>
<section class="video-playlist">
<h3 class="title">Artificial Intelligence</h3>
<p>10 lessions . 50m 48s</p>
<div class="videos">
</div>
</section>
</main>
<script src="javascript\courses.js"></script>
</body>
</html>