-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelloworld.html
More file actions
35 lines (32 loc) · 1.2 KB
/
helloworld.html
File metadata and controls
35 lines (32 loc) · 1.2 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>A simple HTML document</title>
</head>
<body>
<h1>This is a heading 1</h1>
<h2>This is a heading 2</h2>
<h3>This is a heading 3</h3>
<h4>This is a heading 4</h4>
<h5>This is a heading 5</h5>
<h6>This is a heading 6</h6>
<p>Hello World!<p>
<p>multiple spaces.</p>
<p>multiple<br><br>line<br><br><br>breaks.</p>
<a href="kites.jpg"><img src="kites-thumb.jpg" alt="kites"></a>
<br><br>
<a href="https://www.google.com/">Google Search</a><br><br> <!-- ex1 -->
<a href="https://www.google.com/" target="_blank">Google</a><br><br> <!-- ex1 -->
<a href="downloads/sample.jpg">Download Image file</a>
<p><b>This text is bold</b></p>
<p><code>This is computer code</code></p>
<p><em>This text is emphasized</em></p>
<p><i>This text is italic</i></p>
<p><small>This text is small</small></p>
<p><mark>This text is marked</mark></p>
<p><strong>This text is strongly emphasized</strong></p>
<p>This is <sub>subscript</sub> and <sup>superscript</sup></p>
<p><ins>This text is inserted to the document</ins></p>
<p><del>This text is deleted from the document</del></p>
</body>
</html>