-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (31 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Try2Chat</title>
<link rel="stylesheet" type='text/css' media='screen' href="./main.css">
</head>
<body>
<div id="videos">
<video class='video-player' id='user-1' autoplay playsinline></video>
<video class="video-player" id="user-2" autoplay playsinline></video>
</div>
<div id="controls">
<div class="control-container" id="camera-btn">
<img src="icons/camera.png" alt="camera-icon">
</div>
<div class="control-container" id="mic-btn">
<img src="icons/mic.png" alt="mic-icon">
</div>
<a href="lobby.html">
<div class="control-container" id="leave-btn">
<img src="icons/phone.png" alt="phone-icon">
</div>
</a>
</div>
</body>
<script src="./agora-rtm-sdk-1.4.4.js"></script>
<script src="./main.js"></script>
</html>