17 lines
395 B
HTML
17 lines
395 B
HTML
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>tt tag</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<p>This text is normal.</p>
|
||
|
<p><tt>This text is teletype text.</tt></p>
|
||
|
|
||
|
<p><strong>Note:</strong> The tt element is not supported in HTML5.</p>
|
||
|
|
||
|
<p style="font-family:'Lucida Console', monospace; size=2;">Similar effect using css</p>
|
||
|
|
||
|
</body>
|
||
|
</html>
|