-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (41 loc) · 891 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>Main Heading</h1>
<p>First Paragraph</p>
<h2>Heading2 1</h2>
<p>Second Paragraph</p>
<img src="ss_logo.jpg" alt="SS Logo"/>
<h2>Heading2 2</h2>
<h3>Heading3 1</h3>
<table>
<tr>
<th>Column Heading 1</th>
<th>Column Heading 2</th>
<th>Column Heading 3</th>
</tr>
<tr>
<td>Row 1 Column 1</td>
<td>Row 1 Column 2</td>
<td>Row 1 Column 3</td>
</tr>
<tr>
<td>Row 2 Column 1</td>
<td>Row 2 Column 2</td>
<td>Row 2 Column 3</td>
</tr>
</table>
<h3>Heading3 2</h3>
<ol>
<li>Item 1 with Numbering</li>
<li>Item 2 with Numbering</li>
</ol>
<h3>Heading3 3</h3>
<ul>
<li>Item 1 without Numbering</li>
<li>Item 2 without Numbering</li>
</ul>
</body>
</html>