-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIndex.html
71 lines (60 loc) · 1.6 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
h1 {color: white;
font-size: 55px;
position: absolute;
left:50px;
top: 10px;
font-family: helvetica;}
body { width:100;
height:100vh;
background-repeat: no-repeat;
background: #74ebd5; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #ACB6E5, #74ebd5); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #ACB6E5, #74ebd5); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
h2 { color: white;
font-family: helvetica;
font-size: 17px;
position: absolute;
top: 125px;
left: 50px;}
p { color: #4682B4;
font-family: helvetica;
font-size: 16px;
position: absolute;
top:190px;
left: 50px;}
form {
position: absolute;
top: 290px;
left: 50px;}
div {
color: white
font:helvetica;
position: absolute;
top: 370px;
left: 50px;}
</style>
</head>
<body>
<h1>GraphWhy</h1>
<h2>Welcome to GraphWhy! Please join us in our mission to create a more informed public through self-curated graphs and statistics.
</h2>
<p>In the meantime, this page will be used as a blog in order to update you with our progress.
</br>
</br>
Sign up below to receive updates or make suggestions. Everything is appreciated. Cheers!
</p>
<form>
Username: <input type="text" name="username" />
<br/>
Password: <input type="password" name="password" />
<br/>
<input type="submit" value="submit" />
</form>
<div>If already signed up....... sign in <a href="">here</a></div>
</body>
</html>