-
Notifications
You must be signed in to change notification settings - Fork 0
/
Discovery.html
85 lines (75 loc) · 2.2 KB
/
Discovery.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
<!DOCTYPE html>
<html>
<head>
<title>The Discovery</title>
<style>
body {
margin: 0px;
padding: 0px;
border: 0px;
background-color: #08E8FF;
color: white;
}
a {
color: white;
}
.header {
height: 65px;
margin-top: 25px;
text-align: center;
font-size: 24px;
}
.banner {
background: url(diamond.jpg);
background-size: cover;
width: auto;
height: 200px;
text-align: center;
font-size: 52px;
padding-top: 75px;
color: white;
}
.content {
min-height: 500px;
padding-top: 50px;
padding-bottom: 50px;
font-size: 18px;
background-color: white;
color: black;
}
.footer {
height: 120px;
padding: 50px;
text-align: center;
font-size: 20px;
color:#1806E8;
}
</style>
</head>
<body>
<div class="header">
<a href="Mission1.html">Home</a>/ <a href="gameCopy.html">A Game</a> / <a href="Discovery.html">Main page</a>
</div>
<div class="banner">
The Discovery of the Monk Diamond
</div>
<div class="content">
<div style="width: 80%; padding-top: 50px; float: left;">
<p style="padding-left: 50px; padding-right: 50px;">
Professor Bairstone and Dr Day, along with Ernest the dog, were on an
expedition in Siberia when they discovered the Monk Diamond.<br/>It had
been hidden in a remote mountain cave.<br/>The Bond Brothers attempted to
sabotage the expedition and reclaim the diamond but were unsuccessful.<br/>
The team returned to Moscow with the diamond and a special exhibition is
being held at the House of Volkov to celebrate their discovery.
</p>
</div>
<div style="width: 20%; padding-top: 50px; float: left;">
<img src="diamond.jpg" style="width: 120px;"/>
</div>
</div>
<div class="footer">
Contact Professor Bairstone: profbairstone@intrepidexplorer.com
</div>
</body>
</html>