XHTML and CSS Tutorial - 5 - Bold, Italics, and Comments


<!doctype html>
<html>
<head>
<title>
This is the title
</title>
</head>

<body>
<h1>Best Website Ever! </h1>
<p>This is my paragraph</p>
<hr />

<h2>This is the second header </h2> 
<p>This is the second paragraph.<br /> And now I’m done with the tutorial </p>
</body>

</html>

<!doctype html>
<html>
<head>
<title>
This is the title
</title>
</head>

<body>
<h1>Best Website Ever! </h1>
<p>This is my paragraph</p>
<hr />

<h2>This is the second header </h2> 
<p>This is the <strong> second </strong> paragraph.<br /> And now <em> I’m done with the tutorial </em> </p>
</body>

</html>



Comments