Welcome to the Valley of Nightmares! ---- There's nothing scary about this site, really, the site has nothing to do with the name - so ignore! =O Anyways, enjoy the site while it's alive because you never know when I will accidently press the red button over there in the corner...*coughcough* ^_^;

     Main.Page
     Splash.Page
     F.A.Q
     About.Us
     Contact.Us
     Affiliation
     VN.History
     VN.Characters
     Past.Layouts
     Linkage (In/Out)
     Our.Awards
     Win.an.Award
     Report.an Error!
     Arigatou.Thanks!

     VN.Radio.Blog
     VN.Blab Forums
     VN.Oekaki
     VN.Topsites
     Plushies.Paresu
     Final.Kiseki (fansite)

     Fun.Pokemon Pages
     DARE
     Mewonie.Baloney
     Ask.Snowbora
     Blonde.Quiz
     Personality.Quiz
     TUFV (noclickie!!)
     .......
     Random.Polls
     Funneh.Events
     Crazeh.Excuses
     How.To Annoy
     How.To.Annoy CU

     3D.Pokemon
     Pokemon.Images
     Fan.Art
     Fan.Fakes
     Art.Gallery

     Drabbles
     Touhi.Za.Kusari
     Solo (one shot)

     Red.:.Blue
     Gold.:.Silver
     Ruby.:.Sapphire
     FR.:.LG
     Dungeon.R/B
     R/S.Pokemon Sprites
     Eevee.Evolutions
     Weakness.Chart

     Video.Tutorials
     HTML.Tutorials
     Photoshop.Tutorials
     Oekakis.Setup
     PlugBoards.Setup
     RadioBlog.Help

     Free.Buttons
     Free.Layouts
     Layouts.Help
     Styleswitchers
     HTML.Tips
     SSI.PHP Include
     Web.Dictionary
     Source.Codes
     Tips.And.Tricks
     Web.Resources

     Photoshop.Brushes
     Winamp.Skins
     Anti-Anti.Pokemon
     All.About N00bs
     IM.Status Messages
.:: HTML Help ::.


HTML stands for Hyper Text Markup Language. It is pretty simple once you get the hang of it, but if you're a newbie, then prepare for a rough ride. Here are just some basic HTML though, it will be able how to set the weight of your text, how to make links, pictures. etc.

Setting the weight of your text:
<b>Bold</b>
<i>Italic</i>
<u>Underline</u>

Links:
<a href="http://www.link.com">Link</a>

Placing images:
<img src="http://www.imagelink.com">

For images, you will not need an </img> tag like the rest of the HTML tags.

Placing images with links:
<a href="http://www.link.com"><img src="http://www.imagelink.com" border="0"></a>

You will need an </a> tag for this, it will tell the browser to only place the link in the picture, and not anything else around it. The 'border="0"' part, will tell the browser to not put a border around the picture, you may replace the zero with a number like 1 or 5, depending on how big you want your border to be.

Tables:
<table><tr><td>
</table></tr></td>

If you were wondering how we placed the pictures for VN's layout where we wanted them to be, well it's pretty simple, we used tables.

<table> is the start of a table itself, you can set the cellpadding, cellspacing, border, align, width and height for it. Remeber that all of your cells should be within the table and /table tag, or else the browser will think that they're a part of another table.

<td> is table data, they're an individual cell in a table row.

<tr> a table row, they should contain at least a data cell.

Here's an example of a table:

cell cell cell cell
cell cell cell cell


DIVs:
DIVs are pretty much like tables, they are not as hard to code as tables though, and you can place them anywhere on your website. The bad thing about DIVs is that they overlap each other, and everything else on your page - so I would not recommend you to use one for your disclaimer or to place a picture in your contents.

<div style="position: absolute; width: 100px; top: 100px; height: 100px"> content </div> -- this is the tag for a simple DIV layer. Edit the 100's to the pixel that you wanted.

Basic coding for a HTML page:



For more HTML help, you can go to Lissa Explains.