-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (46 loc) · 1.86 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SMCTR - Youtube Ambient Effect</title>
<!-- Linking Youtube Favicon -->
<link rel="icon" href="https://www.youtube.com/s/desktop/c22661fa/img/favicon_32x32.png" sizes="32x32">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- H1 for heading -->
<p class="HeadingText">Ambient Effect in Youtube and Youtube Music.</p>
<!-- Div for settings background. To use the Ambient Effect -->
<div class="Backgroundimagebox">
<!-- Div for bluring the background Image -->
<div class="TextBox">
<!-- Change Image path for Ambient effect here and in style.css file also-->
<img src="Image.png" alt="">
<h1>SM CTR Youtube Channel</h1>
<h3>
Please subscribe & follow SM CTR Channel and Page for awseome content.
</h3>
<h1>
Channel Content
</h1>
<h3>Coding Tutorials, AI Tips & Tricks, Funny Projects, Programming Memes</h3>
</div>
</div>
<!-- H1 for heading -->
<p class="HeadingText">Ambient Effect in Youtube. While Playing Video.</p>
<!-- Div for settings background. To use the Ambient Effect -->
<div class="VideoBackgroundbox">
<video class="Firstvideo" autoplay loop muted>
<!-- Change Video Path for Ambient Effect -->
<source class="Firstvideo" src="Video.mp4" type="video/mp4">
</video>
<div class="GlassEffectbox">
<video class="SecondVideo" autoplay loop muted>
<!-- Change Video Path for Ambient Effect -->
<source class="SecondVideo" src="Video.mp4" type="video/mp4">
</video>
</div>
</div>
</body>
</html>