-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
43 lines (35 loc) · 1.3 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>WB — Online collaborative whiteboard</title>
<link rel="icon" type="image/png" href="favicon.ico" />
<link rel="stylesheet" href="index.css" />
<meta name="description" content="A free online whiteboard for realtime collaboration. Draw, write text and sketch new ideas together on whitebophir"/>
<meta name="keywords" content="whiteboard,collaborative,online,draw,paint,shared,realtime,wbo,whitebophir"/>
<link rel="icon" type="image/x-icon" sizes="16x16 32x32 64x64" href="favicon.ico">
<link rel="icon" type="image/svg+xml" sizes="256x256" href="favicon.svg">
<link rel="apple-touch-icon" href="favicon.svg">
<link rel="mask-icon" href="favicon.svg" color="black">
</head>
<body>
<header>
<h1>WB</h1> - <h2>Welcome</h2>
</header>
<main>
<p>Welcome to <b>WB</b>. You can go to <a href="./board.html">the public board</a>
or create a new one using the form below.
</p><p>
To collaborate on a drawing in real time with someone,
just send them its URL.
</p>
<form action="./board.html" method="GET">
<input type="text" id="board" name="board" placeholder="Name of the board..."/>
<input type="submit" value="Go">
</form>
</main>
<footer>
<a href="https://github.com/rdbeach/wb" class="smallink">Source code on github</a>
</footer>
</body>
</html>