on the editor or if you add the image using html. The page must be saved for the images to display in the editor
There are three ways of formatting the content
To edit or delete existing content, log in and then bring up the page you wish to edit. Look on the page for an "edit" tab. Depending on your user permissions, you might see this on all pages or only on certain ones.
Clicking the edit tab will bring up a page with a form for changing the page. Here you can change the text and settings. Once you have the text and settings in a suitable form, click on the "Submit" button on the bottom of the form. Note that certain sites may be set up to require you to "Preview" the page before you can submit your changes.
If you wish to delete the page (and you have appropriate permissions), click on the "delete" button near the bottom of the form. You'll get a second chance to confirm that you wish to delete the page, or to change your mind!
If you cannot find the page you want to edit go to Administer > Content or do a search for it
visit the Drupal handbooks for advanced help: http://drupal.org/handbooks
You can optionally format your entry in friendly old HTML. But hey, if you're a novice, don't worry--it's not as difficult as it sounds. Here's a quick primer:
If you want something to be bold, just enclose it in <b> or <strong> tags, like this:
<b>This text is bold</b>
<strong>This text is bold</strong>
Note that there is always an opening tag (no forward slash) and a closing tag (a forward slash before the tag name, indicating that you are "turning it off").
To make something italic, put it in <i> or <em> tags:
<i>This is in italics</i>
<em>This is emphasized</em>
There is considerable debate about the semantic nature of the <b></code and <code><i> tags versus the <strong> and <em> tags.
To put things nicely in paragraphs, enclose them in <p> tags:
<p>This is a paragraph.</p>
To make a bulleted list, first open a list with a <ul> tag (that stands for "unordered list"), then put each list item in <li> (yes, for "list item") tags. Don't forget at the end to close off your list with a closing </ul> tag. Here's how it looks:
The result is displayed below:
To add a link to you need to use the <a> (anchor) tag.
<a href="http://www.example.com">Example.com</a>
To add links to other pages within your Drupal site you do not need to add the full URL, you can simply refer to the node like so:
<a href="/?q=node/1222">My node</a>
Note the "/" at the beginning. Also the above example is using non-clean URLs. If your site has clean URLs enabled you can remove the ?q= so that you just have <a href="/node/1222">My node</a>.