-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (26 loc) · 929 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Thala Checker</title>
</head>
<body>
<h1>Thala Checker</h1>
<label for="userInput">Enter a word or number:</label>
<input type="text" id="userInput" />
<button onclick="checkInput()">Submit</button>
<div id="result"></div>
<div id="myModal" class="modal">
<div class="modal-content">
<span id="closeModal" class="close">×</span>
<video id="thalaVideo" controls autoplay muted loop>
<source src="https://drive.google.com/uc?id=1Pd-cxkckiH5DFaUyzmrZiGDcBo0YyE-M" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
</body>
<script src="script.js"></script>
</html>