-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnewspaper.html
More file actions
51 lines (45 loc) · 1.47 KB
/
newspaper.html
File metadata and controls
51 lines (45 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Parkville Times</title>
<style>
body{background-color: cyan;}
h1{
color: blue;
text-align: center;
font-style: italic;
}
.description{text-align: center;}
.silver{color: hsl(0, 0%, 75%);}
.fuchsia{color: #FF00FF;}
.orange{color: rgb(255,165,0);}
h2{margin-bottom: 0%;}
h3{
text-decoration: underline;
margin-bottom: 0%;
}
p{margin-top: 0%;}
</style>
</head>
<body>
<h1>The Parkville Times®</h1> <hr>
<h2 class="description">Late-Breaking, Investigative, Sensationlist</h2>
<h2>MAIN OFFICE:</h2>
<p>111 Main <br>
Parkville, MO 64152</p>
<p>Enjoy a wide variety of news stories, comic strips, and advertisements, in these vibrant colors: <br>
<span class="silver">Silver for news stories.</span>
<span class="fuchsia">Fuchsia for comic strips.</span>
<span class="orange">Bright orange for advertisements</span> </p>
<h3>Subscription Information:</h3>
<p>Call: (816) 741-2000 <br>
Hours: Mon-Sat 8-5</p>
<h3>Rates:</h3>
<p>Every Day..............$2.00 <br>
Sunday Only..........$3.00 <br>
Web Only...............$2.50</p>
</body>
</html>