blob: f1a9fa1d3297b88af893648647054ee1e915f80a (
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
|
<!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 {
background-color: #FFFFFF;
opacity: 0.6;
font-size: 4em;
padding: 10px;
margin-left: 40px;
}
</style>
</head>
<body>
<div id="content">
<h1> Fall Nature Hikes</h1>
</div>
</body>
</html>
|