-
Notifications
You must be signed in to change notification settings - Fork 0
/
part4.html
82 lines (72 loc) · 2.86 KB
/
part4.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
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
</head>
<body>
<div id="us-state-city-county-info">
<div id="states">
<h1>US States</h1>
<div class="state">
<h2>California</h2>
<p>California is in the western part of the United States.</p>
</div>
<div class="state">
<h2>Connecticut</h2>
<p>Connecticut is in the northeast part of the United States.</p>
</div>
<div class="state">
<h2>Alabama</h2>
<p>Alabama is in the southern part of the United States.</p>
</div>
</div>
<hr>
<div id="cities">
<h1>US Cities</h1>
<div class="city">
<h2>Boston</h2>
<p>Boston is the capital of Massachusetts.</p>
</div>
<div class="city">
<h2>Detroit</h2>
<p>Detroit is the capital of Michigan.</p>
</div>
<div class="city">
<h2>Dover</h2>
<p>Dover is the Capital of Delaware.</p>
</div>
</div>
<hr>
<div id="counties">
<h1>US Counties</h1>
<div class="county">
<h2>Orange County</h2>
<p>
Orange County is a region in Southern California.
It's known for Anaheim's Disneyland Resort, a huge complex of rides,
restaurants and shops. It has a population of 3.2 million people.
</p>
</div>
<div class="county">
<h2>Suffolk County</h2>
<p>
Suffolk County is the easternmost county in the U.S. state of New York.
It is mainly located on the eastern end of Long Island, but also
includes several smaller islands. The estimated population is 1.5 million.
</p>
</div>
<div class="county">
<h2>Burlington County</h2>
<p>
Burlington County is a county in the U.S. state of New Jersey.
The county is the largest in New Jersey by area. Its
county seat is Mount Holly. The estimated population is 450,000 people.
</p>
</div>
</div>
</div>
<script>
console.log()
</script>
</body>
</html>