blob: d74632eb393da8601631014c34cb973795d8f8a7 (
plain) (
blame)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>Page Title Goes Here</title>
<style>
#content { background-image: url(fall.jpg);
background-repeat: no-repeat;
margin: auto;
width: 640px;
height: 480px;
padding-top: 20px;
}
h1 {
color: #ffcccc;
color: hsla(60, 100%, 90%, 0.8);
font-family: Georgia, "Times New Roman", serif;
font-size: 6em;
padding: 20px;
}
</style>
</head>
<body>
<div id="content">
<h1> Fall Nature Hikes</h1>
</div>
</body>
</html>
|