xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<title>HTML Encoding</title>
</head>
<body>
<p>Special characters are encoded using HTML entities:</p>
<p>< is the entity for <, > is the entity for >, & is the entity for &, etc.</p>
<p>Here are some examples:</p>
<p><strong>This is a strong tag.</strong></p>
<p>Here's an ampersand: &</p>
</body>
</html>