-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (36 loc) · 1.46 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="icon" href="https://estrattonbailey.com/favicon.png" type="image/png"></link>
<meta name="description" content=""/>
<meta property="og:url" content=""/>
<meta property="og:site_name" content=""/>
<meta property="og:type" content="website"/>
<meta property="og:title" content=""/>
<meta property="og:description" content=""/>
<meta property="og:image" content=""/>
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:site" content=""/>
<meta name="twitter:url" content=""/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content=""/>
<meta name="twitter:image" content=""/>
<link href="https://unpkg.com/[email protected]/svbstrate.css" rel="stylesheet" type="text/css" />
<link href="/index.css" rel="stylesheet" type="text/css" />
<title>Hypercast Vanilla JS Demo</title>
</head>
<body>
<div id="root" class='p12'>
<h1 class='mb4'>Hypercast Vanilla JS Demo</h1>
<p id='status' class='mb6 mono'>Status: Disconnected</p>
<form id='form'>
<input name='message' class='db mb2' placeholder='Type a message' />
<button class='btn' type='submit'>Send</button>
</form>
<div id='messages' class='mt6'></div>
</div>
<script src="/index.js"></script>
</body>
</html>