-
Notifications
You must be signed in to change notification settings - Fork 3
/
5.5.html
37 lines (28 loc) · 911 Bytes
/
5.5.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
<!-- This file summarizes everything learned in the media chapter !-->
<html>
<head>
<title>Media Webpage</title>
</head>
<body>
<h1>Media in HTML</h1>
<br>
<br>
<h2>My excellent trip summed up in one video:</h2>
<video src="parisvideo.mp4" width="100" height="100" controls> </video>
<br>
<br>
<h2>My personal photo album:</h2>
<figure>
<img src="https://upload.wikimedia.org/wikipedia/commons/8/8a/Paris_vue_d'ensemble_tour_Eiffel.jpg" width="100" height="100" />
<img src="https://upload.wikimedia.org/wikipedia/commons/e/e6/Paris_Night.jpg" width="100" height="100" />
<img src="https://upload.wikimedia.org/wikipedia/commons/0/0b/Eiffel_tower-Paris.jpg" width="100" height="100" />
<figcaption>Taken from wikipedia</figcaption>
</figure>
<br>
<br>
<h2>My favorite song I listened to while there:</h2>
<audio src=“parisaudio.mp3” controls />
<br>
<br>
</body>
</html>