-
Notifications
You must be signed in to change notification settings - Fork 2
/
conference.html
56 lines (51 loc) · 1.51 KB
/
conference.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<meta name="mobile-web-app-capable" content="yes" />
<title>Video Conference</title>
<!--nprogress-->
<link
rel="stylesheet"
href="https://unpkg.com/[email protected]/nprogress.css"
/>
<script src="https://unpkg.com/[email protected]/nprogress.js"></script>
<!-- Nhúng file css -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<!-- <link rel="stylesheet" href="css/main.css" /> -->
<link rel="stylesheet" href="css/conference.css" />
<!--jquery-->
<script
src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
crossorigin="anonymous"
></script>
<!--google-oauth2-->
<script
src="https://apis.google.com/js/client:platform.js?onload=start"
async
defer
></script>
<!--scripts-->
<script src="js/main.js"></script>
</head>
<body>
<div id="container">
<h1>
<h1>
<span id="con_topic">Video Conference</span>
<p id="con_desc"></p>
</h1>
</h1>
<video id="selfCam" playsinline autoplay muted></video>
<div class="box">
<button id="hangupButton">Hang Up</button>
</div>
<div id="hub" class="box"></div>
</div>
<script src="https://webrtc.github.io/adapter/adapter-latest.js"></script>
<script src="js/conference.js" async></script>
</body>
</html>