-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (56 loc) · 1.34 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Landmark Challenge</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #e20cb7;
padding: 20px;
}
.postcard {
width: 300px;
margin: auto;
padding: 15px;
background: rgba(199, 104, 48, 0.615);
border-radius: 10px;
box-shadow: 0 4px 8px rgba(18, 67, 110, 0.2);
}
.postcard img {
width: 100%;
border-radius: 5px;
}
.hint {
margin-top: 10px;
font-weight: bold;
}
input,
button {
margin-top: 15px;
padding: 10px;
font-size: 16px;
}
.p {
font-family: "Times New Roman", Times, serif;
}
</style>
</head>
<body>
<!-- // 48.8584° N, 2.2945° E: "RGVjaXBoZXIgQ2hhbGxlbmdlICEh" -->
<!-- // 21.8385° N, 73.7193° E: "Q29kaW5nIHRoZSBjb2RlICEh" -->
<!-- // 40.6892° N, 74.0445° W: "Q3lwaGVyIHRoZSBjeXBoZXIuLg==" -->
<div class="postcard">
<img
src="https://upload.wikimedia.org/wikipedia/commons/a/a8/Tour_Eiffel_Wikimedia_Commons.jpg"
alt="Eiffel Tower"
/>
<p class="Hint">
Hint: "Some where in between the tags in the language of Base of
2^6."
</p>
</div>
</body>
</html>