forked from Las-Chu/Agoration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlevel1.html
44 lines (35 loc) · 902 Bytes
/
level1.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
<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">
<tr>
<td align="center" class="a" width="90%"><font face="georgia">Wow! You must live in a crowded city. Before you decide to talk to anyone, try to absorb your surroundings. It's nice outside, right? Do you hear the sounds of the city?</td>
<td align="right" width="10%"><a href="level2.html"><img src="image/arrow.png" width="100%" height="100"></a></td>
</tr>
</table>
<table width="90%" height="200" border="0" align="center" bgcolor="#ffb8b8">
<tr><td><img src="image/b1.jpg" width="100%" height="300"></td></tr>
</table>
</body>
</html>