-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (27 loc) · 976 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>On Page Assistant</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<button id="button1" class="button">Sign Up</button>
<button id="button2" class="button">Login</button>
<button id="button3" class="button">Learn More</button>
<button id="button4" class="button">Contact Us</button>
<button id="button5" class="button">Explore</button>
<button id="button6" class="button">Get Started</button>
<div id="video-container">
<video id="video" autoplay muted loop>
<source src="test.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<p id="explanation"></p>
</div>
</main>
<script src="script.js"></script>
</body>
</html>