-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (43 loc) · 1.44 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Prathna</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/x-icon" href="pngegg.png">
</head>
<body>
<header>
<img src="pngegg (1).png" alt="Logo" class="logo">
<h1>Prathna</h1>
<a href="credits.html">Credits</a>
</header>
<div class="video-container">
<div class="video-wrapper">
<div class="video-player">
<video controls id="video1" class="video-with-border">
<source src="Shiv Tandav.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<p class="video-title">Shiv Tandav</p>
</div>
<div class="video-wrapper">
<div class="video-player">
<video controls id="video2" class="video-with-border">
<source src="Ganapati Atharvashirsha.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<p class="video-title">Ganapati Atharvashirsha</p>
</div>
</div>
<script src="script.js"></script>
<script>
// Set default playback rate to 1.25x
document.getElementById('video1').playbackRate = 1.25;
document.getElementById('video2').playbackRate = 1.25;
</script>
</body>
</html>