-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwelcome.html
102 lines (89 loc) · 2.35 KB
/
welcome.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Clippy</title>
<link href='https://fonts.googleapis.com/css?family=Sofia' rel='stylesheet'>
<link rel="icon" type="image/png" href="assets/webnote.png">
<style type="text/css">
html,body{
margin: 0;
padding: 0;
background: #1A1A1D;
font-family: 'Sofia';
}
.title{
text-align: center;
background: #111111;
color: yellow;
font-family: 'Sofia';
letter-spacing: 0.2em;
font-size: 4em;
padding: 5px;
}
.tagline{
text-align: center;
color: yellow;
font-family: 'Sofia';
letter-spacing: 0.2em;
font-size: 2em;
padding: 5px;
margin-bottom: 2%;
}
.text{
font-family: 'Sofia';
color: orange;
font-size: 1.2em;
margin-left: 42vw;
}
.buttonsIn{
margin-top: 1%;
border-radius: 3px;
font-family: 'Sofia';
letter-spacing: 0.3em;
font-size: 1.1em;
width: 7vw;
}
.regb{
margin-left: 1vw;
}
#foot{
margin-top:40vh;
color: white;
text-align: center;
font-size: 1.3em;
letter-spacing: 4px;
}
#heart{
color: red;
}
#nameLink{
text-decoration: none;
color: orange;
}
</style>
</head>
<body>
<a onclick="#"><h1 class="title">Welcome to Clippy!</h1></a>
<div class="tagline"> A web app to store notes and to-do's</div>
<div>
<span class="text">New User</span>
<span><button class="buttonsIn regb" onclick="register();">Register</button></span>
</div>
<div>
<span class="text">Existing user</span>
<span><button class="buttonsIn logb" onclick="login();">Login</button></span>
</div>
<footer>
<p id="foot">Made with <span id="heart">♥</span> by <a id="nameLink" href="https://BharathKumarRavichandran.github.io">Bharath Kumar Ravichandran</a></p>
</footer>
<script>
function register(){
window.location = "register.php";
}
function login(){
window.location = "login.php";
}
</script>
</body>
</html>