You are here because you're interested in learning some basic HTML skills, and help make our webmasters' lives a lot easier right? Well, don't have a heart attack over HTML because it isn't quantum physics. You can probably learn these HTML tags in less than fifteen minutes! So, are you ready to start? Well, lets get cracking!
<P>, </P> | [Paragraph] Put <P> before a paragraph and put </P> at the end of a paragraph. However, the closing tag, </P>, is optional. You can choose to have it, or not have it. |
<B>, </B> | [Bold] Put <B> before the text you want to be bold and </B> at the end. |
<I>, </I> | [Italics] Put <I> before the text you want to be italicized and </I> at the end. |
<U>, </U> | [Underline] Put <U> before the text you want to be underlined and </U> at the end. |
<CENTER>, </CENTER> | [Center] Put <CENTER> before the text you want to be centered and </CENTER> at the end. |
<BR> | [Breaks] Insert in places where you want to have tighter breaks, e.g. song lyrics. |
Paragraphs [<P>, </P>]
<P>This is paragraph one.</P> <P>This is paragraph two.</P>
It results in:
This is paragraph one.
This is paragraph two.
Or....
<P>This is paragraph one. <P>This is paragraph two.
It results in:
This is paragraph one.
This is paragraph two.
<B>This sentence is bold.</B> This sentence is not.
It results in:
This sentence is bold. This sentence is not
<I>This sentence is italicized.</I> This sentence is not.
It results in:
This sentence is italicized. This sentence is not
<U>This sentence is underlined.</U> This sentence is not.
It results in:
This sentence is underlined. This sentence is not
<CENTER>This sentence is centered.</CENTER> This sentence is not.
It results in:
This is line one.<BR>This is line two.
It results in:
This is line one.
This is line two.
Save as Text format
Save as HTML format
If you really want to make my life easier, copy and paste the following onto the top of your document, and fill in the bold part!
<HTML>
<HEAD>
<TITLE>The Title of Your Fic</TITLE>
<LINK REL="StyleSheet" HREF="/~gateways/style3.css" TYPE="text/css">
</HEAD>
<BODY>
<P><B>Disclaimer:</B> <I>Enter your disclaimer here.</I></P>
<H4 ALIGN="CENTER">Your story, complete with the HTML tags, goes here.