-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
36 lines (32 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 name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<title>Video call simple server</title>
<style>
h1 {
padding: 200px 0 50px 0;
}
.flex a {
margin: 0 25px;
}
</style>
</head>
<body>
<div class="container">
<h1 class="text-center">WebRTC 1-1 video call</h1>
<h3 class="text-center">Go to <a href="https://videocall.netlify.com/">https://videocall.netlify.com</a> for real app.</h3>
<div class="text-center">
Developed by <a href="https://fb.com/ohmygodvt95">Ohmygodvt95</a>
<hr>
<div class="flex justify-content-center">
<a href="https://github.com/ohmygodvt95/webrtc-simple-server.git">GITHUB</a>
<a href="https://fb.com/ohmygodvt95">FACEBOOK</a>
</div>
</div>
</div>
</body>
</html>