-
Notifications
You must be signed in to change notification settings - Fork 0
/
week4.2.html
34 lines (33 loc) · 955 Bytes
/
week4.2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Formatting Exercise</title>
<link rel="stylesheet" href="css/week4/p2/exercise.css">
</head>
<body>
<header>
<h3>Formatting Exercise</h3>
</header>
<main>
<p>We can format words using the <b> tag for <b>bold</b> or the <i> tag for <em>italic</em>.
We can even nest the tags like so <b><i>...</i></b> - <b><i>now do you see?</i></b> But
be careful always close the inner tag first.</p>
<p>The original context of the saying <b>O tempora, o mores</b> is
the following:</p>
<blockquote>
O tempora, o mores!
Senatus haec intellegit. consul videt; hic tamen vivit.
Vivit? immo vero etiam in senatum venit, fit publici consilii particeps,
notat et designat oculis ad caedem unum quemque nostrum.
</blockquote>
<address>
My office details are:<br>
Mary Lyng<br>
Room 316 (Third Floor)<br>
Cork Road Campus.
</address>
<hr>
</main>
</body>
</html>