-
Notifications
You must be signed in to change notification settings - Fork 0
/
resources.html
103 lines (87 loc) · 2.03 KB
/
resources.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html>
<head>
<link rel="icon" type="image/x-icon" href="images/sunflower.png" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>wholΣ</title>
<style>
img {
display: block;
margin-left: auto;
margin-right: auto;
}
.dropbtn {
background-color: #4CAF50;
color: white;
padding: 16px;
font-size: 16px;
border: none;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {background-color: #ddd;}
.dropdown:hover .dropdown-content {display: block;}
.dropdown:hover .dropbtn {background-color: #3e8e41;}
* {
box-sizing: border-box;
}
/* Create two equal columns that floats next to each other */
.column {
float: left;
width: 50%;
padding: 10px;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.column {
width: 100%;
}
}
</style>
</head>
<body>
<div class="dropdown">
<button class="dropbtn">Travel</button>
<div class="dropdown-content">
<a href="../index.html">Home</a>
<a href="../info.html">Info</a>
<a href="../resources.html">Resources</a>
</div>
</div>
<div>
<a href="..">
<img src="images/sunflower.png" style="width:75px;height:75px;" alt="sunflower">
</a>
</div>
<img src="images/1199px-Cole_Thomas_The_Consummation_The_Course_of_the_Empire_1836.jpg">
<img src="images/1200px-Cole_Thomas_The_Course_of_Empire_Destruction_1836.jpg">
<img src="images/castle.png">
<img src="images/sanss.jpg">
<img src="images/hess.jpg">
<img src="images/sanssout.png">
<img src="images/bavaria.png">
</body>
</html>