forked from RitabrataDas343/VideoCall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (34 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>VideoCall - EdiTechStudio</title>
<link rel="stylesheet" href="assets/style/main.css" />
<link rel="shortcut icon" type="image/jpg" href="assets/favicon.png"/>
</head>
<body>
<video autoplay muted loop id="myVideo">
<source src="assets/glitch_1.mp4" type="video/mp4" />
</video>
<audio id="mouse">
<!-- <source src="assets/key1.ogg" type="audio/ogg"> -->
<source src="assets/mouse.mp3" type="audio/mpeg">
Your browser does not support the audio tag.
</audio>
<div class="btn-center">
<h1 style="color:white; text-align:center; font-size:55px;">VideoCall</h1>
<br>
<h1 style="color:red; text-align:center; font-size:40px;">Made by Ritabrata</h1>
<h1 style="color:red; text-align:center; font-size:40px;">Supported by EdiTechStudio</h1>
<br><br><br><Br>
<button id="join">
Join Room
</button>
<br />
<br />
<button id="create">Create Room</button>
</div>
</body>
<script src="./assets/js/index.js"></script>
</html>