-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAutumn.html
More file actions
58 lines (45 loc) · 1.23 KB
/
Autumn.html
File metadata and controls
58 lines (45 loc) · 1.23 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Autumn</title>
<link rel="stylesheet" href="styles.css">
<style>
h1{color: black;
text-align: top;
width:150px; height: 100px;
margin:30px;
padding: 5px;
font-family:Snell Roundhand, cursive;
font-size:70px
}
h2{
color: white;
font-family:Snell Roundhand, cursive;
}
.container {
position: relative;
}
.text-block {
position: absolute;
bottom: 20px;
right: 20px;
color: white;
padding-left: 20px;
padding-right: 20px;
}
</style>
</head>
<body>
<div class="container">
<img src="/Users/danielhellsten/Documents/GitHub/DanHell4/city-finland-night-596740.jpg" alt="Norway" height="1380"width="1380" >
<div class="text-block">
<h1 style="color:white; text-align:center">Autumn</h1>
<h2>Finnish autumn is relatively long. The summer pretty much ends in
August and there are three long months before winter really starts.
Autumn can be a good time to visit Finland, but to be completely honest,
October and November are the darkest months of the whole year.</h2>
</div>
</div>
<div class="topright"></div>
</body>
</html>