Exercise 2: Adding images
In order to illustrate points you can include images in your HTML. You do this using the <img> tag. For example, to add the image logo_small.png we can add the line <img src="logo_small.png"> in our previously made HTML page.
<html>
<head>
<title>Tutorial document</title>
</head>
<body style="padding: 5px;">
<img src="logo_small.png">
<h2 class="orange">Tutorial document</h2>
This is where you can write some text.<br>
</body>
</html>
To see how this HTML looks click here.
Exercise 3: Open a Geneious document