HTML

From The Wajas Wiki
Revision as of 05:33, 7 December 2011 by Katamarie (talk | contribs) (Basics)

HTML, which stands for HyperText Markup Language, is the predominant markup language for web pages. More relevantly to the average waja user, HTML codes are what players primarily use to customize their forum posts, cave descriptions, cave rules, signatures, groups, and anywhere else permitted by the site. It allows you to do a variety of things, such as posting images, linking to pages, and editing the appearance of your text.

Basics

Here is a basic guide that can be used in your cave description or in posts on the forums to customize them. This is by no means a comprehensive list.

Copy the codes exactly and edit the text as indicated.

Editing Text Appearance

DISCLAIMER: Please use these sparingly and tastefully, as overuse of large or brightly colored text is obnoxious and could get you in trouble.

How to make text Bold

<b> Your Text Goes Here </b>

How to Italicize text

<i> Your Text Goes Here </i>

Underlining Text

<a style="text-decoration:underline;"> Your Text Goes Here</a>

Over-lining Text Text

<a style="text-decoration:overline;"> Your Text Goes Here</a>

Striking Through Text

<a style="text-decoration:line-through;"> Your Text Goes Here</a>

Changing Text Color

<a style="color:#HEXCODE;">Your Text Goes Here</a>

(Replacing HEXCODE with the hex code of the color you want the text to be.)

Changing Background Color for Text

<a style="background-color:#HEXCODE;">Your Text Goes Here</a>

(Replacing HEXCODE with the hex code of the color you want the area around the text to be.)

Changing Text Alignment

<p style="text-align:ALIGNMENT;">Your Text Goes Here</p>

(Replacing ALIGNMENT with either left, right, or center)

Changing Text Font

<a style="font-family:FONTNAME;">Your Text Goes Here</a>

(Replacing FONTNAME with the name of the font which you want to use, such as verdana or times. NOTE: Only basic, web-friendly fonts will work.)

Changing Text Size

<a style="font-size:SIZEpx;">Your Text Goes Here</a>

(Replacing SIZE with a numerical value, such as 15 or 30.)

Combining Codes

To combine codes, you simply need to combine the parts within the quotation marks of the style code (except for bold and italics, which need to be placed directly around the text you want to be bold or italicized).

For an example, we want to make text that is pure red, in the verdana font, and bold. To do this, we will take the individual parts

font-family:verdana;

and

color:#FF0000;

and put them side by side inside the quotation marks of the style code. To make the text bold, we will put the open bold tag <b> right before what we want our text to say and the close bold tag </b> right after our text but before the </a>


This gives us: <a style="font-family:verdana;color:#FF0000;"> <b>Your Text Goes Here</b> </a>


Please note that if you are changing the alignment of the text as well as other attributes of the text, you will need to use the <p style=""> </p> code rather than the <a style=""> </a> code, as using the latter will cause the alignment to not show up. If you also wanted to center the text above, you would need to change the code to the following:


<p style="text-align:center;font-family:verdana;color:#FF0000;"> <b>Your Text Goes Here</b> </p>


Links and Images

How to post a link

<a href="Link URL Goes Here">What you want the link to say goes here</a>

How to post an image

<img src="Image URL Goes Here">

How to resize an image

<img src="Image URL Goes Here" width="FIRSTNUMBER" height="SECONDNUMBER">

(replacing FIRSTNUMBER with a numerical value for the width in pixels, and SECOND NUMBER with a numerical value for the height in pixels)

How to add mouse-over text to an image

<img src="Image URL Goes Here" title="Mouseover text goes here">

Mouse-over text will appear when someone viewing your image idles their cursor over it.

How to post an image that links to a page

<a href="Link URL Goes Here"><img src="Image URL Goes Here"></a>

The "Link URL" is the address of the page you want the link to go to. The "Image URL" is the location of the image.

Where to find the Link URL

It will be in the address bar of your browser when you're on the page you want the link to go to.

Where to find the image URL

For Firefox, right click on the image and select "copy image location". For Internet Explorer, right click on the image and select "properties" Copy the address listed after "Address(URL)". If you paste the Image URL in the address bar of your browser and press enter, you should come up with a page featuring nothing but the image in question.

Remember! If you want to post an image off the Custom Demo, you must save the finished image to your computer and then upload it to an image hosting site. Linking to the custom demo image directly will cause it to show up incorrectly to other users because that image isn't stored on the server and ceases to exist when you leave the Custom Demo page. You must save your completed design to your computer, upload it to an image hosting site, and use the Image URL provided there.

Tips and Troubleshooting

  • Only edit the text where indicated. Everything else is code and needs to be copied exactly. Do not remove the quotation marks in codes where they are present, as they are part of the code.
  • Make sure you close your codes correctly. If you accidentally leave a less than sign (<) open without a greater than sign (>) to close it, the site will eat everything in your post after the less than sign appeared. It's always a good idea to copy your post into a wordpad document so that if the site times out or there's a mistake in your html, you won't lose your post.
  • Remember, if you're posting an image from your computer, you must upload it to an image hosting site first. Examples of some free image hosting sites are photobucket.com and tinypic.com. You'll want to copy the image's address given to you by the site (it's usually the "direct link" address).
  • You also cannot post images directly from the Custom Demo without first saving them to your computer and uploading them to an image hosting site. Linking to the custom demo image directly will cause it to show up incorrectly to other users because that image isn't stored on the server. You must save your completed design to your computer, upload it to an image hosting site, and use the Image URL provided there.
  • Many image hosting sites provide an HTML code for you to copy paste to make your image show up, but it isn't recommended that you just copy-paste this. More often than not it includes a code that makes it link back to their website, which is annoying and prevents you from linking the image to somewhere else. When people see that your image is clickable, they will expect it to take them to somewhere relevant (such as the waja's page or your cave), not back to the image hosting site.
  • If an image is already stored on the Wajas.com server, feel free to link to it there. There's no need to use an image hosting site to upload a picture of a waja that already exists. Simply go to the waja's page and use the image URL of its picture. See the "Where to find the image URL" section above for more information on where to find the Image URL of images that are already uploaded to the internet.
  • When posting on the forums, do not press the "Preview" button. This can cause HTML to mess up and not show up properly or at all.
  • If something didn't work right, check and double check your HTML. Did you properly close your codes? Did you type them correctly in the first place (Did you typo a part, such as saying "a herf" instead of "a href", for example)? Did you make sure both URLs were correct, and each in the place they were supposed to go (image URL in the image URL spot and website address in the link URL spot)? If the code required a hex, number, or font name, did you make sure to enter a valid one?
  • If you're still having trouble, feel free to post on the Help forum with your problem and other users will be happy to assist you.

Areas HTML is Limited or Unusable

Currently, no HTML works in private messages, titles or names of wajas and groups, or in usernames of players. You can no longer use HTML in forum signatures or the titles of threads, though those who have not edited their signature or thread's title since this feature was removed may still have it so long as they do not edit it.

Cave descriptions and waja pages used to be much more highly customizable, but since the LM27 virus of 2007 they are now limited to more basic HTML.