-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathhello.html
More file actions
41 lines (41 loc) · 1.04 KB
/
hello.html
File metadata and controls
41 lines (41 loc) · 1.04 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
36
37
38
39
40
41
<!doctype html>
<html>
<head>
<title>Hello, World!</title>
</head>
<body>
<a name="top" />
<h1>Level One Heading (H1)</h1>
<p>This is paragraph text under the first heading.</p>
<p>Jump to <a href="#table">simple table</a></p>
<h2>Level Two Heading (H2)</h2>
<p>Chris Simpkins, Director General of the Royal British Legion</p>
<img src="http://goo.gl/RXfE7U" />
<p>Got this picture from <a href="http://goo.gl/uoaBmP">this page</a>.</p>
<p>Send email to <a href="mailto:bob@aol.com">Bob</a></p>
This is an unordered list:
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
This is an ordered list:
<ol>
<li>Item 1</li>
<li>Item 2</li>
</ol>
<a name="table"/>
This is a simple table:
<table>
<tr>
<th>Col1</th><th>Col2</th><th>Col3</th>
</tr>
<tr>
<td>1,1</td><td>1,2</td><td>1,3</td>
</tr>
<tr>
<td>2,1</td><td>2,2</td><td>2,3</td>
</tr>
</table>
<p>Back to <a href="#top">top</a></p>
</body>
</html>