Skip to content
30 changes: 30 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,36 @@
<h1>Main Heading</h1>
<h3>sub heading</h3>
<p>Hello, World!</p>

<p>Unordered List</p>
<ul>
<li> one </li>
<li> two </li>
<li> three </li>
<li> four </li>
</ul>

<p>Ordered list</p>
<ol>
<li> one </li>
<li> two </li>
<li> three </li>
<li> four </li>
</ol>

<p>Table</p>
<table>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>

<input type="radio"> Radio Button/>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="js/script.js"></script>
Expand Down