-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (52 loc) · 2.06 KB
/
index.html
File metadata and controls
56 lines (52 loc) · 2.06 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Registration Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="video-container">
<video src="y2mate.com - KBC 2021 INTRO MUSIC_1080pFHR.mp4" autoplay muted></video>
<div class="overlay"></div>
<!-- <div class="video-text">
<h2>Welcome to Our Website</h2>
<p>This video will play only once with audio.</p>
</div> -->
</div>
<div class="registration-form">
<div class="form-container">
<h2>Register Now</h2>
<form id="registration-form">
<div class="form-group">
<label for="name">Name</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="phone">Phone</label>
<input type="tel" id="phone" name="phone" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<input type="checkbox" id="terms" name="terms" required>
<label for="terms">I agree to the terms and conditions</label>
</div>
<button id="submit">Register</button>
</form>
</div>
</div>
<audio autoplay>
<source src="y2mate.com - KBC 2021 INTRO MUSIC.mp3" type="audio/mp3">
Your browser does not support the audio element.
</audio>
</div>
<script>
</script>
<script src="count.js"></script>
</body>
</html>