-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclass_activity_6.html
More file actions
80 lines (71 loc) · 3.31 KB
/
class_activity_6.html
File metadata and controls
80 lines (71 loc) · 3.31 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
76
77
78
79
80
<!--
Using multimedia element, add 2 videos, 1 image, 1 audio in your html document
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Html Multimedia</title>
<link rel="shortcut icon" href="image/html_favicon/icons8-html-color-32.png" type="image/x-icon">
</head>
<body>
<h1>Class Activity 6: Html Multimedia</h1>
<p>Lights, camera, HTML! 🎬 This activity dives into the world of multimedia. Get ready to jazz up your web pages with videos, audio, and more. It's going to be a multimedia extravaganza! 📽️🎶</p>
<h3>Class Activity Links</h3>
<a href="index.html">Home page</a> |
<a href="class_activity_1.html">Favorite Food</a> |
<a href="class_activity_2.html">Login Form</a> |
<a href="class_activity_3.html">Favorite Book</a> |
<a href="class_activity_4.html">Feedback Form</a> |
<a href="class_activity_5.html">Basic Calculator</a> |
<a href="class_activity_6.html">Html Multimedia</a> |
<a href="class_activity_7.html">Page Replicate</a> |
<a href="class_activity_8.html">Financial Webpage Replication</a> |
<a href="class_activity_9.html">Weekly Planner</a> |
<a href="class_activity_10.html">Weekly Classroom Schedule</a> |
<a href="class_activity_11.html">Revision 1</a> |
<a href="class_activity_12.html">Revision 2</a> |
<h3>Assignment Links</h3>
<a href="assignment_1.html">T-Shirt Signup Form</a> |
<a href="assignment_2.html">Kaduna Electric Form</a> |
<a href="assignment_3.html">Cable TV Packages</a> |
<h3>Project Preview Links</h3>
<a href="https://deliciousbytes.vercel.app/" target="_blank">Delicious Bytes Food Menu</a> |
<div class="container" style="text-align: center;">
<h3>Html Multimedia</h3>
<ol>
<li>
<p>First Digital Image</p>
<img src="image/first-digital-image.jpg" alt="first digital image">
</li>
<li>
<code><audio></code><br><br>
<audio
src="https://www.winhistory.de/more/winstart/ogg/nt4.ogg"
controls></audio>
</li>
<li>
<code><video></code><br><br>
<ol type="i">
<li>
<p>Embedded from online source - First Website</p>
<iframe width="560" height="315"
src="https://www.youtube.com/embed/8sTy8466MoE?si=U-pu1XkOyWqqmhfd"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</li>
<li>
<p>Linked from my local storage</p>
<video controls autoplay>
<source src="name-of-a-video-in-my-computer.mp4" type="video/mp4">
OOPS 🤭, your browser is not supporting this video
</video>
</li>
</ol>
</li>
</ol>
</div>
</body>
</html>