-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (30 loc) · 718 Bytes
/
index.html
File metadata and controls
37 lines (30 loc) · 718 Bytes
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
<head>
<title>
MinJia's Webpage
</title>
</head>
<body bgcolor = "yellow">
<h1>This is my website</h1>
This is where information to be presented to the user is entered.
<h2>Second Heading</h2>
<p> Th/is is an unordered list</p>
<ul>
<li>First</li>
<li>Second</li>
</ul>
<p>This is an ordered list</p>
<ol>
<li>ordered</li>
<li>unordered</li>
</ol>
<a href = "https://dunmanhigh.moe.edu.sg/">Go to Dunman High School</a>
<p> </p>
<a href = "https://www.google.com">
<button type = "button">Click to go to google</button>
</a>
<a href = "https://www.google.com">
<image src = "Screenshot (1).png"></image>
</a>
<iframe src="https://youtu.be/t2ByLmLnYJ8"></iframe>
</body>
</html>