-
Notifications
You must be signed in to change notification settings - Fork 0
/
media.html
53 lines (44 loc) · 1.95 KB
/
media.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<title>Media - New York City</title>
</head>
<body>
<nav>
<ul id="menu">
<li><a href="index.html">Blog</a></li>
<li><a href="media.html" class="active">Media</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
<header>
<h1>New York City Media</h1>
</header>
<main>
<section id="photo-gallery">
<h2>Photo Gallery</h2>
<img src="GALLERY/michael-discenza-5omwAMDxmkU-unsplash.jpg" alt="New York Aerial Photo">
<img src="GALLERY/redd-f-wOj5odhDOZ0-unsplash.jpg" alt="Brooklyn Bridge">
<img src="GALLERY/robert-bye-WTPp4wgourk-unsplash.jpg" alt="Avenue in New York">
<img src="GALLERY/thomas-habr-6NmnrAJPq7M-unsplash.jpg" alt="New York buildings Photo">
</section>
<section id="video-library">
<h2>Video Library</h2>
<video controls src="https://videos.pexels.com/video-files/5180403/5180403-uhd_2560_1440_24fps.mp4"> </video>
<video controls src="https://videos.pexels.com/video-files/3202634/3202634-hd_1920_1080_30fps.mp4"></video>
</section>
</section>
<section>
<h2>Map of New York</h2>
<div id="map">
<iframe id ="map" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d19390.602071620073!2d-73.97942842708969!3d40.763697187498884!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89c259a9b3117469%3A0xd134e199a405a163!2sEmpire%20State%20Building!5e0!3m2!1sen!2sie!4v1719861640984!5m2!1sen!2sie" width="100%" height="450" style="border:0;"></iframe>
</div>
</section>
</main>
<footer>
<p>Posted by: Lucas Camilo</p>
<p>Contact information: [email protected]</p>
</footer>
</body>
</html>