forked from INVESTAR/StockAnalysisInPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHtmlSample.htm
More file actions
45 lines (44 loc) · 1.32 KB
/
Copy pathHtmlSample.htm
File metadata and controls
45 lines (44 loc) · 1.32 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
42
43
44
45
<html>
<head>
<title>This is title.</title>
</head>
<body>
<h1>This is heading1 text.</h1>
<h2>This is heading2 text.</h2>
<h3>This is heading3 text.</h3>
<p>This is a paragraph.</p>
This is plain text.<br />
<b>This is bold text.</b><br />
<i>This is Italic text.</i><br />
<s>This is strike text.</s><br />
<ol>
<li>the first orderd list</li>
<li>the second orderd list</li>
<li>the third orderd list</li>
</ol>
<ul>
<li>unorderd list</li>
<li>unorderd list</li>
<li>unorderd list</li>
</ul>
<table border=1>
<tr>
<th>table header 1</th>
<th>table header 2</th>
<th>table header 3</th>
</tr>
<tr>
<td>table data 4</td>
<td>table data 5</td>
<td>table data 6</td>
</tr>
<tr>
<td>table data 7</td>
<td>table data 8</td>
<td>table data 9</td>
</tr>
</table><br />
<a href="https://www.python.org">Visit Python homepage!<br />
<img src="https://www.python.org/static/img/python-logo.png" /></a>
</body>
</html>