-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (53 loc) · 2.47 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<ul id="menu">
<li><a href="index.html" class="active">Blog</a></li>
<li><a href="media.html">Media</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
<header>
<h1> New York City</h1>
</header>
<main>
<section id="blog">
<article>
<p>
New York City is made up of five boroughs which include Queens, Manhattan, Brooklyn, the Bronx, and Staten Island. The city is the home of approximately 8 million people. In 1876, France gifted the City of New York what is known as the Statue of Liberty, which is currently located on Liberty Island and commonly visited by tourists. However, it took 10 years to assemble and therefore wasn’t unveiled until 1886. Another tourist destination is Times Square. Times Square is commonly known for the big buildings, Broadway shows, and bright neon signs. This famous location was named after The New York Times after the Times moved to that location. Prior to that, it was named Longacre Square. New York City is also known for its bridges that connect the boroughs and allow ease of transportation.
Note: Save your work to see your progress.</p>
</article>
</section>
<figure>
<img src="https://content.codecademy.com/courses/Semantic%20HTML/statue-of-liberty.jpeg"><br>
<figurecaption>This is the Statue of Liberty, a popular tourist attraction located on Liberty Island.</figurecaption>
</figure>
<aside><p>New York City is very popular for the variety of great food it has. Some of the top food items in NYC include:</p>
<ol>
<li>Pizza</li>
<li>Bagels</li>
<li>Burguers and Sandwiches</li>
<li>Ramen</li>
<li>Tacos</li>
<li>Pasta</li>
<li>Desserts</li>
</ol>
</aside>
<section id="media">
<article><h2>The Scenery in NYC</h2>
<p>While the view in the city is beautiful, the sounds are not as lovely. Below you'll see an example of the view and the sounds you'll deal with in NYC on a daily basis.
Note: Save your work to see your progress.</p></article>
<video controls src="https://content.codecademy.com/courses/Semantic%20HTML/nyc-skyline-timelapse.mp4"></video>
<embed src="https://content.codecademy.com/courses/Semantic HTML/nyc-skyline.jpeg"><embed>
</section>
</main>
<footer id="about">
<p>Posted by: Lucas Camilo</p>
<p>Contact information: [email protected]</p>
</footer>
</body>
</html>