TAFENSWCertIVLessonWebsite/index.html

45 lines
922 B
HTML
Raw Normal View History

<html>
<head>
<title>My first web page</title>
2022-10-10 02:09:57 +00:00
<meta charset+"UTF-16">
</head>
<body>
<h1>My First Home/Index Page</h1>
2022-10-10 02:09:12 +00:00
<hr color="red">
<ul>
<li><a href="index.html">Home</a></li>
2022-10-10 02:17:56 +00:00
<li><a href="ContactUs.html">Contact Us<a></li>
<li>Products</li>
<li>Services</li>
<li>Locations</li>
<li>Shopping Carts</li>
<li>Catergories</li>
<li>About Us</li>
</ul>
2022-10-10 02:32:04 +00:00
<hr>
<h2>Media</h2>
2022-10-10 03:13:42 +00:00
<h3>Sounds</h3>
2022-10-10 02:39:32 +00:00
<audio controls>
2022-10-10 02:38:19 +00:00
<source src="gamestartup.mp3" type="audio/mpeg">
2022-10-10 02:38:02 +00:00
</audio>
2022-10-10 02:43:45 +00:00
<hr>
<h3>Video from YouTube</h3>
2022-10-10 02:45:49 +00:00
<iframe width="560" height="315" src="https://www.youtube.com/embed/sugvnHA7ElY" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
2022-10-10 03:05:40 +00:00
<hr>
2022-10-10 03:04:16 +00:00
<h4>Image/Picture<h4>
2022-10-10 03:08:30 +00:00
<img src="studentlogo.png" alt="Picture of 2 students">
<p>Created by Rayyan</p>
<p>in a session for Cert 4</p>
</body>
</html>