44 lines
878 B
HTML
44 lines
878 B
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>
|
|
<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">
|
|
|
|
|
|
|
|
<p>Created by Rayyan</p>
|
|
<p>in a session for Cert 4</p>
|
|
|
|
|
|
</body>
|
|
|
|
|
|
</html>
|