-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspots.html
More file actions
75 lines (74 loc) · 2.52 KB
/
Copy pathspots.html
File metadata and controls
75 lines (74 loc) · 2.52 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!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">
<style>
.center{
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
</style>
<title>The City</title>
</head>
<body style="background-color:#f2e6ce">
<!--Cindy Yang Section 86-->
<div class="center">
<h1>The City</h1>
<nav>
<a href="index.html">All About Me</a>
<a href="favorites.html">Hobbies and Interests</a>
<a href="skills.html">Skills</a>
<a href="spots.html">The City</a>
</nav>
<div>
<p>Being born and growing up in New York City, there are some parts of the city that makes it ideal....</p>
<h2>I love New York City because....</h2>
<ul>
<li>the scenery (in some places)</li>
<li>the people I know</li>
</ul>
</div>
<div>
<img src="Image/Dumbo.jpeg" alt="Dumbo" width="200" height="200">
<img src="/Image/CentralPark.jpeg" alt="Enjoying the Day" width="200" height="200">
<img src="Image/BeatTheBomb.jpeg" alt="With Friends" width="200" height="200">
</div>
<div>
<h2>New York City is not so great though...</h2>
<ul>
<li>late trains</li>
<li>dirty streets</li>
<li>crime</li>
</ul>
</div>
<div>
<img src="Image/Train.jpeg" alt="NYC Trains" width="300" height="200">
<img src="Image/Trash.jpg" alt="NYC Streets" width="266.66" height="200">
<img src="Image/Crime.jpeg" alt="NYC Crime" width="225" height="200">
</div>
<br>
<div>
<h2>My Favorite Places in the City:</h2>
<table>
<tr>
<th>Name</th>
<th>Address</th>
</tr>
<tr>
<td>Coney Island Beach</td>
<td>37, Riegelmann Boardwalk, NY 11224</td>
</tr>
<tr>
<td>Pier One</td>
<td>57 Front St, Brooklyn, NY 11201</td>
</tr>
</table>
</div>
<p>Copyright © 2022-2023 Cindy Yang</p>
</div>
</body>
</html>