-
Notifications
You must be signed in to change notification settings - Fork 0
/
rough.html
50 lines (48 loc) · 1.03 KB
/
rough.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
<html>
<head>
<style>
body {
background: linear-gradient(to right, blue, green);
}
h1 {
text-align: center;
color: black;
font-family: Arial, Helvetica, sans-serif;
}
.buttons {
display: flex;
justify-content: flex-end;
margin: 10px;
}
.button {
padding: 10px;
border: none;
border-radius: 5px;
color: white;
cursor: pointer;
}
.sign-in {
background-color: blue;
}
.sign-up {
background-color: green;
margin-left: 10px;
}
</style>
</head>
<body>
<div class="buttons">
<button onclick="page3()" class="button sign-in">Sign In</button>
<button onclick="page2()" class="button sign-up">Sign Up</button>
</div>
<h1>Welcome to IIT Kanban Board!</h1>
<!--<script>
function page2(){
window.location.href="page2.html";
}
function page3(){
window.location.href="page3.html";
}
</script> -->
</body>
</html>