Add a News
Header
Content
(HTML tags allowed to Layout *)
Link
Date (YYYYMMDD)
Expiration (YYYYMMDD)
Private


Back to Admin of News

* Common HTML tags

Effect
HTML tags
Rendering
bold <b>text</b> text
italicized <i>text</i> text
type-written <tt>text</tt> text
Headings <h1>Largest Heading</h1>
...
<h6>Smallest Heading</h6>

Largest Heading

...

Smallest Heading
Horizontal Rule <hr>
Preformatted Text

<pre> this is a
                      preformatted text </pre>

This is a 
	     preformatted text
Regular link <a href="http://url_here.com/">text for link</a> text for link
Mail Link

<a href="mailto:username@host.com">email me</a> or
<a href="mailto:username@host.com?subject=your subject here">email me with a subject</a> to include a subject.

email me
or
email me with a subject
Online Images <img src="http://url_here.com/directory/graphic.gif"> (remember, use width, height, and alt tags for best performance.)  
Center Tag <center> centered text</center>
(you can also use <div align="center"> </div>)
centered text
List
<ul>
<li> first item </li>
<li> second item </li>
</ul>
  • first item
  • second item
Ordered List (numbered)
<ol>
<li> item 1 </li>
<li> item 2 </li>
</ol>
  1. item 1
  2. item 2