-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (32 loc) · 1.72 KB
/
index.html
File metadata and controls
45 lines (32 loc) · 1.72 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
<!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">
<!-- Style.css -->
<link rel="stylesheet" href="css/style.css">
<!-- Latest compiled and minified CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Jquery Link -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<!-- Font Awesome Icons Library -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer"
/>
<title>Agora One-to-One Video Call</title>
</head>
<body>
<div class="d-flex justify-content-center w-100 p-2">
<div class="p-2 rounded shadow-lg position-relative">
<div id="local" class="d-flex p-1 justify-content-center rounded position-absolute local shadow-lg "></div>
<div id="remote" class="d-flex p-1 justify-content-center rounded remote shaow-lg "></div>
<div class="d-flex justify-content-center">
<i class="fa fa-video-camera" id="btnCam" aria-hidden="true "></i>
<i class="fa fa-microphone " id="btnMic" aria-hidden="true "></i><i class="fa fas fa-plug " id="btnPlug" aria-hidden="true"></i>
</div>
</div>
</div>
<script src="js/AgoraRTC_N-4.2.1.js "></script>
<script src="js/script.js "></script>
</body>
</html>