-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy-first.html
42 lines (33 loc) · 945 Bytes
/
my-first.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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>My First Page</title>
</head>
<body>
<!-- Header -->
<h1>Hello World!</h1>
<!-- Image -->
<img src="http://en.spongepedia.org/images/thumb/3/33/Spongebob!!!.jpg/180px-Spongebob!!!.jpg" alt="Spongebob!" />
<br>
<!-- Link with New Tab -->
<a href="https://www.google.com" target="_blank">Opens new tab</a>
<br>
<!-- Bold Link -->
<strong><a href="https://www.youtube.com">This is a bold link</a></strong>
<br>
<!-- Placeholder link -->
<a href="#">This is placeholder link goes nowhere, for now</a>
<ol>
<li>Step 1</li>
<li>Step 2</li>
<li>Step 3</li>
</ol>
<ul>
<li>Step 1.1</li>
<li>Step 2.1</li>
<li>Step 3.1</li>
</ul>
<iframe width="400" height="200" src="https://www.youtube.com/embed/3XmrZaVVUpc" frameborder="0" gesture="media" allow="encrypted-media" allowfullscreen></iframe>
</body>
</html>