forked from Las-Chu/Agoration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
level3.html
41 lines (33 loc) · 783 Bytes
/
level3.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
<html>
<head>
<style>
@font-face:{
font-family:#ffb8b8;
}
.a{
font-size:45px;
text-align:center;
}
.img{
width:100px;
height:100px;
}
.b{
background-size: 100% 100%;
transition:all 2s;
}
.b:hover{
transform:scale(1.1,1.1);
}
</style>
</head>
<body bgcolor="#487eb0">
<table width="90%" height="400" border="0" align="center" bgcolor="#dcdde1" cellpadding="15" cellspacing="15">
<tr>
<td align="center" class="a" width="50%"><font face="georgia">How are you feeling right now? </td>
<td align="right" width="50%"><input style="height:100px;font-size:30pt;" type="text" name="name" id="name" required="required" autofocus></td>
<td align="right" width="50%"><a href="next.html"><img src="image/enter.png" height="100" width="100"></a></td>
</tr>
</table>
</body>
</html>