-
Notifications
You must be signed in to change notification settings - Fork 1
/
enterCamp.html
77 lines (74 loc) · 1.67 KB
/
enterCamp.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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Enter Camp</title>
</head>
<body>
<div class="img">
<img src="images/robotOnCharge.jpg" alt="onCharger" />
</div>
<p>
He enters an empty room and charges his battery without anyone seeing him
and goes to sleep mode. When he get some charge he found a new
<span> Battery </span>
that lasts for a long time and a
<span>Chip</span>
.He puts them in his inventory in case he needs them later.
</p>
<div class="img">
<img src="images/battery.jpg" width="308px" alt="battery" />
<img src="images/chip.png" width="308px" alt="chip" />
</div>
<div class="creatorRobot">
<h1>The robots of creator just appeared</h1>
</div>
<div class="btn">
<a href="page_2.html" class="button">Fight</a>
<a href="page_3.html" class="button">Run away </a>
</div>
</body>
</html>
<style>
.img {
width: 305px;
height: 200px;
display: flex;
margin-left: 50px;
}
.btn > a:first-child {
color: darkred;
}
.btn > a {
color: #4175b8;
font-size: 30px;
margin-left: 10px;
}
body {
padding: 100px;
margin: auto;
width: 60%;
text-align: center;
}
p {
margin-top: 10px;
color: #4f565e;
font-size: 40px;
}
span {
color: darkred;
font-size: 50px;
}
h1{
color: #4175b8;
}
.button {
text-decoration: none;
background-color: #c8e4ff;
font-size: 30px;
padding: 10px;
border-radius: 10%;
margin-left: 550px;
}
</style>