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

<!doctype html>

<html>
<head>
<title>
This is the title Sucker!
</title>
</head>
<body>
<h1>Best Website Ever!</h1>
<p>This is my paragraph</p>

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

<!doctype html>

<html>
<head>
<title>
This is the title Sucker!
</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 this tutorial</p>
</body>
</html>


<!doctype html>

<html>
<head>
<title>
This is the title Sucker!
</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 this</em> tutorial</p>
</body>
</html>

<!doctype html>

<html>
<head>

</head>
<body>
hi my <em>name</em> is thileban

<!--change this paragraph under me -->

<p>I am very lucky</p>

</body>
</html>

Comments