Is there an HTML tag that...

Pretender

Banned
Mar 14, 2000
7,192
0
0
I meant some way to display tags in the page without them actually being interpreted as tags.

For example, if I wanted to show the user to type <BR><BR><td width=&quot;718&quot; height=&quot;17&quot;>, rather then having the browser interpret it as two line breaks and a table cell.
 

DAM

Diamond Member
Jan 10, 2000
6,102
1
76
<html>
<head>
<title>Untitled Document</title>
</head>

<body bgcolor=&quot;#FFFFFF&quot;>
<p>&amp;lt;br&amp;gt;</p>
<p>&amp;lt;bold&amp;gt; </p>
</body>
</html>



dam()
 

DaveJ

Platinum Member
Oct 9, 1999
2,337
1
81
Or you could just use the <PRE></PRE> tag...

Enclose whatever HTML code you want between those and the browser will treat it as straight text...

Dave
 

NikPreviousAcct

No Lifer
Aug 15, 2000
52,763
1
0
well, no, it's not a programming language. Just make a page small enough to where the scroll bars don't need to be there.
 

DaveJ

Platinum Member
Oct 9, 1999
2,337
1
81
Actually, you could enclose your page in one large frame, then set a NOSCROLL attribute in your frame tag... dunno why you'd want to do that though...

Dave
 

konichiwa

Lifer
Oct 9, 1999
15,077
2
0
This will only do it while opening a new window, but...

<SCRIPT LANGUAGE=&quot;javascript&quot;>
var width = screen.width
var height = screen.height
window.open('blahblah.html', 'NAME', config='height=screen.height,width=screen.width,scrollbars=no')
</SCRIPT>

That should work...