-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (40 loc) · 841 Bytes
/
Copy pathindex.html
File metadata and controls
46 lines (40 loc) · 841 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>White Space</title>
<style>
body {
background-color: lightblue;
}
h1 {
color: white;
text-align: center;
font-size: 40px;
}
p {
font-family: "Times New Roman", Times, serif;
font-size: 20px;
text-align: center;
color: blue;
}
.wrapper {
text-align: center;
}
.button {
position: absolute;
top: 50%;
}
</style>
</head>
<body>
<h1>Welcome to White Space</h1>
<p>White Space provides solutions to daily problems by providing a white board on the computer . </p>
<p>You can discuss ideas , brainstorm or even play games on this application . </p>
<div class="wrapper">
<form action="https://kets99.github.io/White-Space/board.html">
<input type="submit" value="Start Drawing !">
</form>
</div>
</body>
</html>