Exercise 4: Tags for simple styles
You can add some simple style to highlight portions of text. <b>Bold</b> and <i>italics</i> are supported. In addition, you can break up text using the simple line break (<br>) or enclosing text in a paragraph (<p>some text</p>). These can be illustrated in the following HTML.
<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>
<a href="Q03307.geneious">Open Q03307 document</a><br>
Here is some <b>bold</b> text and some <i>italic</i> text.<br>
<br>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
</body>
</html>
To see how this HTML looks click here.
Note: When writing a paragraph, do not put any line breaks in yourself. Type everything in on a single line and bracket it with the paragraph tags. If you don't want a line break to happen between two words you should use the (non-breaking space) instead of a standard space (e.g. "Don't break").
Exercise 5: Questions and answers