Just some basic html coding
<head>
<title>My First Webpage</title>
</head>
<body>
<p id="top"><a href="www.google.com"></a></p>
<p> Here is some <strong>strong</strong> text</p>
<p> Here is some <em>italicized</em> text</p>
<p> here is some <ins>Underlined</ins> text</p>
<hr>
<p>here is some <sup>superscript</sup> text</p>
<p>Here is some <sub>subscript</sub> text </p>
<p>Here is some <del>deleted</del> text </p>
<hr>
<ul>
<li><strong>Seamus</strong></li>
<li><em>Barb</em></li>
<li><ins>Jim</ins></li>
</ul>
<ol type="I">
<li><strong>Seamus</strong></li>
<li><em>Barb</em></li>
<li><ins>Jim</ins></li>
</ol>
<ol start="10">
<li><strong>Seamus</strong></li>
<li><em>Barb</em></li>
<li><ins>Jim</ins></li>
</ol>
<hr>
<img src="https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAVmAAAAJGYxYzlkOGRlLTZiMzItNGY0MS1hM2RhLTcxZTA1NmJiYjhjMg.jpg"
width="100" height="100">
<p align="left">That's me!</p>
<hr align="below">
<h1>This is my form!</h1>
<form>
<p>Username: <input type="text" placeholder="your username"></p>
<p>Stay logged in?<input type="checkbox" checked></p>
<p>Employed?
<p>Yes<input type="radio" name="employed" value="employed"></p>
<p>No<input type="radio" name="employed" value="unemployed"></p>
<p>Favorite food?
<select>
<option>Pizza</option>
<option selected>Ice Cream</option>
<option>Sandwich</option>
</select>
</p>
<p><input type="submit" value="Finished? Click Here!"></p>
</form>
<hr>
<table>
<thead>
<tr>
<th>Name</th>
<th>Favorite <br> Color</th>
</tr>
</thead>
<tbody>
<tr>
<td>Rob</td>
<td>Green</td>
</tr>
<tr>
<td>Kristen</td>
<td>Blue</td>
</tr>
<tr>
<td>Kate</td>
<td>Green</td>
</tr>
<tr>
<td>Joe</td>
<td>Blue</td>
</tr>
</tbody>
</table>
<hr>
<p><a href="http://www.google.com"><img src="https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAVmAAAAJGYxYzlkOGRlLTZiMzItNGY0MS1hM2RhLTcxZTA1NmJiYjhjMg.jpg"></a></p>
<p>Click on my face to go to Google!</p>
<p><a href="helloworld.html">Click for helloworld!</a></p>
<p><a href=#top>Back to Top!</a></p>
<hr>
<a href="http://google.com"> <!--Symbols start with &-->
<hr>
<iframe src="http://www.ecowebhosting.co.uk" frameborder="0"></iframe>
<iframe src="helloworld.html" frameborder="10"></iframe>
<iframe width="560" height="315" src="https://www.youtube.com/embed/lDKJ29357FU" frameborder="0" allowfullscreen></iframe>
</body>