TAFENSWCertIVLessonWebsite/index.html

59 lines
1.1 KiB
HTML

<html>
<head>
<title>My first web page</title>
<meta charset+"UTF-16">
</head>
<body>
<h1>My First Home/Index Page</h1>
<hr color="red">
<ul>
<li><a href="index.html">Home</a></li>
<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>
<hr>
<h2>Media</h2>
<h3>Sounds</h3>
<audio controls>
<source src="gamestartup.mp3" type="audio/mpeg">
</audio>
<hr>
<h3>Video from YouTube</h3>
<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>
<hr>
<h4>Image/Picture<h4>
<img src="studentlogo.png" alt="Picture of 2 students">
</hr>
<p>For more information please register</p>
<form>
<label>Given:
<input name="given" type="text">
</label>
<label>Surname:
<input name="surname" type="text">
</label>
</form>
<p>Created by Rayyan</p>
<p>in a session for Cert 4</p>
</body>
</html>