quick html question...

bandXtrb

Banned
May 27, 2001
2,169
0
0
The tag that allows text to appear exactly how it is typed out and formatted in the text of my htm file.

ie:



<< < html >
< body >
Hello,
How are you doing?
< /body>
< /html>
>>



will show up as:



<< Hello,
How are you doing?
>>


and not:


<< Hello, How are you doing?
 

TheVrolok

Lifer
Dec 11, 2000
24,254
4,092
136
Does the <pre> tag still work ? Like:

<html>
<body>
<pre>
<< Hello,
How are you doing? >>
</pre>
</body>
</html>

It was an old and rare tag, I'm not sure if it's even still in use... I haven't used anything like it in years.
 

bandXtrb

Banned
May 27, 2001
2,169
0
0
yeah that's it, thx.

Hmm, it doensn't look too good , though..Maybe I just better format the text in frontpage or something.