-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
45 lines (45 loc) · 2.88 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
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="format-detection" content="telephone=no"/>
<meta name="title" content="Screen share"/>
<meta name="author" content="Explosion-Scratch"/>
<meta name="keywords" content="screenshare,javascript,webrtc,easy,online"/>
<meta name="robots" content="index,follow"/>
<meta name="language" content="English"/>
<meta name="description" content="A simple screen sharing online app that lets you share your screen with anyone in seconds!"/>
<meta name="theme-color" content="#7367f0"/>
<meta name="og:type" content="website"/>
<meta name="apple-mobile-web-app-title" content="Screen share"/>
<meta name="og_site_name" content="WebRTC Screen Share"/>
<meta name="og:site_name" content="WebRTC Screen Share"/>
<meta name="og:locale" content="en_US"/>
<meta name="og:url" content="https://webrtc.explosionscratc.repl.co"/>
<meta name="og:title" content="Screen share"/>
<meta name="og:description" content="A simple screen sharing online app that lets you share your screen with anyone in seconds!"/>
<meta name="og:image" content="https://webrtc.explosionscratc.repl.co/banner.jpg"/>
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:url" content="https://webrtc.explosionscratc.repl.co"/>
<meta name="twitter:title" content="Screen share"/>
<meta name="twitter:description" content="A simple screen sharing online app that lets you share your screen with anyone in seconds!"/>
<meta name="twitter:image" content="https://webrtc.explosionscratc.repl.co/banner.jpg"/>
<title>Screen share</title>
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%22256%22 height=%22256%22 viewBox=%220 0 100 100%22><rect width=%22100%22 height=%22100%22 rx=%2220%22 fill=%22%237367f0%22></rect><text x=%2250%%22 y=%2250%%22 dominant-baseline=%22central%22 text-anchor=%22middle%22 font-size=%2263%22>💬</text></svg>" />
<link rel="preconnect" href="https://0.peerjs.com"/>
<script src="https://unpkg.com/[email protected]/dist/peerjs.min.js" defer></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11" defer></script>
<script src="https://code.iconify.design/2/2.0.3/iconify.min.js" defer></script>
<script src="script.js" defer></script>
<link rel="preload" href="style.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="style.css"></noscript>
</head>
<body>
<div class="buttons hide">
<button id="pause" data-paused="false"><span class="iconify" data-icon="akar-icons:pause"></span></button>
<button id="stop"><span class="iconify" data-icon="fa-regular:stop-circle"></span></button>
<button id="copy_link"><span class="iconify" data-icon="akar-icons:copy"></span></button>
</div>
</body>
</html>