60 lines
1.3 KiB
HTML
60 lines
1.3 KiB
HTML
<!DOCTYPE=html lang="en-au">
|
|
<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><a href="products.html">Products<a></li>
|
|
<li><a href="services.html">Services<a></li>
|
|
<li><a href="locations.html">Locations<a></li>
|
|
<li><a href="shoppingcarts.html">Shopping Carts<a></li>
|
|
<li><a href="catergories.html">Catergories<a></li>
|
|
<li><a href="aboutus.html">About Us<a></li>
|
|
<li><a href="register.html">Register<a></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>
|