Add files via upload

add register webpage
This commit is contained in:
Ray 2022-10-17 14:13:46 +11:00 committed by GitHub
parent bda1e14684
commit a43e9c44c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 58 additions and 0 deletions

58
register.html Normal file
View File

@ -0,0 +1,58 @@
<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>