RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Basic Html

Riddim

Wanderer
Basic Html

Just posting incase someone want to make a site and need to learn the basic...

Basic HTML Document Structure

<Html> - Begins your html document.

<Head> - Contains the information of the page such as title, meta tags for proper indexing of search engines and css or style tags for the layout.

<Title>Title of your page</Title>

</Head> - Closes the <Head> tag.

<Body> - This is where you will put all the contents of your web page such as texts, images, links etc...

</Body> - Closes the <Body> tag.

</Html> - Ends your html document.

Basic HTML Tags

<b></b> - Bold
<u></u> - Underlined
<i></i> - italicized
<p></p> - Paragraph
<strike></strike> - Strikethrough
<br> - Line Break/Next line
<a href="url"></a> - Link (url - stands for Universal Resource Locator)
<address></address> - Information on author
<blockquote></blockquote> - Long Quotes
<Pre></Pre> - Preformatted text
<center></center> - Center the content
<textarea></textarea> - Creates a box to enter text
<img scr="url"></img> - Insert image
<embed scr=" url"></embed> - Insert Flash
<h1></h1> - Header text. Can be from h1-h6, the smaller the no. the bigger the text.
<font color="your color"></font> - Assigns the color of the font. Can be in the form of "White" or Hex like "#FFFFFF"
 
Top