<!DOCTYPE html>
<html>

<head>
  <title>Presentational Elements 1</title>
</head>

<body>
<h2>Formatting with bold, italic, underline, strike-through, and text-type Tags</h2>

<p>The following word uses a <b>bold</b> typeface.</p>

<p>The following word uses an <i>italic</i> typeface.</p>

<p>The following word would be <u>underlined</u>  (deprecated).</p>

<p>The following word would have a <s>strikethrough</s> (deprecated).</p>

<p>The following word will appear in a <tt>monospaced</tt> font.</p>

</body>
</html>