-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathQuiz.html
137 lines (117 loc) · 5.55 KB
/
Quiz.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
<!DOCTYPE html>
<html>
<head>
<!-- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>JSP Page</title>
<style>
.html{
background: white;
}
.topPanel{
margin-top: -9px;
margin-left: -8px;
width: 101.2%;
height: 60px;
box-shadow: 1px 1px 7px 2.7px lightgray;
}
.image{
width: 99.9%;
height: 550px;
margin-left: -7px;
position: absolute;
}
.quiz{
width: 1100px;
height: 300px;
position: absolute;
margin-left: -250px;
}
.title{
position: absolute;
font-size: 70px;
font-family: sans-serif;
font-weight: bolder;
letter-spacing: 2px;
margin-top: 100px;
margin-left: 70px;
color: white;
}
.info{
position: absolute;
margin-top: 200px;
margin-left: 73px;
font-weight: normal;
font-size: 20px;
letter-spacing: 1px;
word-spacing: 1px;
}
.getstarted{
position: absolute;
margin-top: 400px;
margin-left: 70px;
background-color: #ff6666;
color: white;
height: 40px;
width: 100px;
}
.button {
position:absolute;
margin-top: 320px;
margin-left: 70px;
padding: 17px 63px;
border: 0px solid #ff6666;
border-radius: 5px;
background: #ff6666;
background: -webkit-gradient(linear, left top, left bottom, from(#ff6666), to(#ff6666));
background: -moz-linear-gradient(top, #ff6666, #ff6666);
background: linear-gradient(to bottom, #ff6666, #ff6666);
-webkit-box-shadow: #d99516 0px 2px 1px 2px;
-moz-box-shadow: #d99516 0px 2px 1px 2px;
box-shadow: #d99516 0px 2px 1px 2px;
font: normal normal bold 18px arial;
color: #ffffff;
text-align:left;
height: 50px;
width: 140px;
}
.button:hover,
.button:focus {
border: 0px solid #ff8585;
background: #ff7a7a;
background: -webkit-gradient(linear, left top, left bottom, from(#ff7a7a), to(#ff7a7a));
background: -moz-linear-gradient(top, #ff7a7a, #ff7a7a);
background: linear-gradient(to bottom, #ff7a7a, #ff7a7a);
color: #ffffff;
text-decoration: none;
}
.button:active {
background: #993d3d;
background: -webkit-gradient(linear, left top, left bottom, from(#993d3d), to(#ff6666));
background: -moz-linear-gradient(top, #993d3d, #ff6666);
background: linear-gradient(to bottom, #993d3d, #ff6666);
}
</style>
</head>
<body>
<div class="topPanel">
<img src="logo.png" style="margin-top: -2px; margin-left: 15px; height: 55px; width: 170px;">
<img src="forumlogo.png" style="margin-top: -5px; margin-left: -20px; height: 65px; width: 170px;">
<button type="submit" class=""style=" position: absolute; width: 100px; height: 40px; font-size: 17.5px; margin-left: 420px; margin-top: 10px; background-color: white; color: #1a73e8; border-color: white; border: 1px transparent; ">Home</button>
<button type="submit" style=" position: absolute; width: 100px; height: 40px; font-size: 17.5px; margin-left: 500px; margin-top: 10px; background-color: white; color: #1a73e8; border-color: white; border: 1px transparent; ">Features</button>
<button type="submit" style=" border-radius: 25px; position: absolute; width: 120px; height: 40px; font-size: 17.5px; margin-left: 610px; margin-top: 10px; background-color: #1a73e8; color: white; border-color: white; border: 1px transparent; ">Write</button>
<button type="submit" style=" position: absolute; width: 100px; height: 40px; font-size: 17.5px; margin-left: 730px; margin-top: 10px; background-color: white; color: #1a73e8; border-color: white; border: 1px transparent; ">Recent</button>
<button type="submit" style=" position: absolute; width: 80px; height: 40px; font-size: 17.5px; margin-left: 810px; margin-top: 10px; background-color: white; color: #1a73ea; border-color: white; border: 1px transparent; ">Profile</button>
</div>
<img src="quizbackground6.jpg" class="image">
<!--<img src="abca.png" class="quiz"> -->
<h1 class="title"> Quiz Time </h1>
<h3 class="info" >
Lorem Ipsum is simply dummy text oing and <br>
typesetting industry. Lorem Ips been the the<br>
1500s, when an unknown printer took a gsdfds to<br>
</h3>
<button class="button"> Get Started</button>
</body>
</html>