-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path9Video background.html
More file actions
40 lines (32 loc) · 997 Bytes
/
Copy path9Video background.html
File metadata and controls
40 lines (32 loc) · 997 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>9Video-Background</title>
<link rel="stylesheet" href="CSS/9video%20background.css">
</head>
<body>
<div class="hero">
<video class="heroVideo" id="heroVideo" src="videos/PROJECT 11.mp4"
autoplay muted loop playsinline> </video>
<div class="hero-overlay"></div>
<div class="heroContent">
<h1> Smartz Coding Tutorials </h1>
<p> I am learning how to build a Video Background website </p>
<button> Welcome </button>
</div>
<div class="videoControls">
<button class="controlBtn" id="playPauseBtn"> ⏸ </button>
<button class="controlBtn" id="muteBtn"> 🔇 </button>
</div>
</div>
<div class="section">
<h2> Scroll Down</h2>
<p> The video plays fullscreen in the background while
your content sits cleanly on top.
</p>
</div>
<script src="JS/9video background.js"></script>
</body>
</html>