This repository has been archived by the owner on Jun 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (49 loc) · 1.83 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en-au">
<head>
<link rel="stylesheet" type="text/css" href="template.css">
<title>My first web page</title>
<meta charset="UTF-8">
</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>Inserted Google Map</p>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3305.1060994903028!2d150.79634901579732!3d-34.066794336794594!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x6b12ef956ae051c1%3A0x8cb4985ea84278a!2sTAFE%20NSW%20Campbelltown!5e0!3m2!1sen!2sau!4v1667179562576!5m2!1sen!2sau" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
<p>Created by Rayyan</p>
<p>in a session for Cert 4</p>
</body>
</html>