-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
144 lines (121 loc) · 2.57 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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Baloo+Tammudu|Lobster" rel="stylesheet">
<title>lIMITLESS</title>
<style>
#title{
font-size:50px;
margin:0;
font-family: Lobster;
text-align: center;
}
#caption{
margin:0;
font-family: Lobster;
text-align: center ;
}
hr{
width: 60%;
height: 3px;
background-color: #000000;
}
#mainimage{
width: 100%;
height:500px;
position: absolute;
overflow:hidden;
left:0;
}
#login-box{
width: 30%;
background-color: white;
position: absolute;
z-index: 20;
padding: 20px;
margin: 40px;
border-radius: 20px;
text-align: center;
}
input{
width:80%;
border-radius: 5px;
height: 30px;
padding: 20px;
border: 1px solid black;
}
#login-btn{
width: 80%;
border-radius: 10px;
margin: 15px;
padding: 16px;
font-size: 20px;
background-color: blue;
color: white;
}
.parallax{
background-image: url("http://ajjuliani.com/wp-content/uploads/2016/07/Genius-Hour-Kid.png");
height:500px;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
@media screen and (max-width: 700px) {
#login-box {
width:80%;
text-align:center;
margin:20px;
}
input{
height: 20px;
padding: 10px;
}
}
#pt
{
font-family:'Bree Serif', serif;
text-align: center;
width: 100%;
}
#btn1
{
color: white;
text-align: center;
position: absolute;
margin-left: 46%;
background-color: #14A80B;
font-family: 'Baloo Tammudu', cursive;
padding: 5px;
margin-bottom: 10px;
border-radius: 10px;
}
</style>
</head>
<body>
<<<<<<< HEAD
<h1 style="color:red; text-align:center">Limitless</h1>
<h3 style="color:blue">The Ultimate Quiz competition</h3>
=======
<!-- Start your code here -->
<h1 id="title">Limitless</h1>
<p id="caption">The Ultimate Quiz competition</p>
<hr/>
<div>
<div class="parallax">
<div id="login-box">
<p style="font-family:Lobster;font-size:30px;text-align:center;"><b>Login</b></p>
<input type="text" placeholder="Username :" style="margin:5px">
<input type="password" placeholder="Password :" style="margin:5px">
<button id="login-btn">Login</button>
</div>
</div>
<div>
<p id="pt"> Don't want to login?continue as guest</p>
<button type="button" id="btn1">Start Quizzing</button>
</div>
</div>
<!-- End your code here -->
>>>>>>> 05911ee0d690af1b7b5ac48fc9908856a3bdef0e
</body>
</html>