2004-07-21 21:42:30 +00:00
|
|
|
<?php
|
2004-05-13 04:48:19 +00:00
|
|
|
require_once("../inc/util.inc");
|
|
|
|
|
|
|
|
page_head("Allowed HTML tags");
|
|
|
|
|
|
|
|
echo "
|
|
|
|
The following HTML tags are allowed in profiles, messages,
|
|
|
|
signatures, etc.:
|
|
|
|
<ul>
|
|
|
|
<li> <b> (bold)
|
|
|
|
<li> <i> (italics)
|
|
|
|
<li> <a> (hyperlink)
|
|
|
|
<li> <p> (paragraph)
|
|
|
|
<li> <br> (break)
|
|
|
|
<li> <pre> (preformatted)
|
2004-12-01 22:44:47 +00:00
|
|
|
<li> <img> (image; height cannot exceed 450 pixels.
|
|
|
|
Please do not link to images without
|
|
|
|
permission of the web site where the image is hosted.)
|
2004-05-13 04:48:19 +00:00
|
|
|
</ul>
|
|
|
|
";
|
|
|
|
|
|
|
|
page_tail();
|
|
|
|
?>
|