Html

RivalDestiny

WiiChat Member
Staff member
Dec 15, 2006
1,451
17
Michigan
Wii Online Code
0409-5781-9484-0073
Does anyone here fool around with html? Or at least knows the basic of it? HTML is actually a very very easy thing to do once you get the hang of it. To go along with HTML, you must have good experience with designing as well, or else your website/forum/blog will look bland. Well if your not good in that department, you might wanna try templates. Just download and upload to a hosting server. If your looking to make a website, then you should try using HTML. (CSS and other things are also needed, but there all pretty easy =D).

Basic:

<html>: This is a html tag, it shows that this is a html document.
<head>: This is just the head info, not to worry about here
<title>: This is where your title of the site goes
Title.jpg

<body> This is usually where all the text goes, all the links, mostly everything goes in here.

Example:
Code:
<html>
<head>
<title>WiiChat Pwns!</title>
</head>
<body>
WiiChat is the best forum in the whole wide world! 
</body>
</html>

I bet your wondering what </body> or </head> is? Well, it just closes off the the text, link, paragraph.

Example:
Code:
<head> Wiichat </head>

Basic Codes

<P> *Starts a new paragraph

<B> *Makes Text Bold

<U> *Make Your Text Underlined

<BR> *Used to end a line, won't go down two lines

EXAMPLE:
Code:
<P>Wii<BR>Chat</P>

Will Appear like this:
Wii
Chat


<h1> Big
.
.
. *Headings, makes the text large, mainly used for titles.
.
<h6> Small

Aligning Text
If you wanna align the text, put it in the paragraph tag like so....

Code:
<P ALIGN="center"> Wiichat </P>
OR
Code:
<P ALIGN="left"> Wiichat </P>
OR
Code:
<P ALIGN="right"> Wiichat </P>

There's a lot more to it, but it is really really easy to learn :yesnod:

~Rival
 
Hmmm... I Never Really Tried Typing In The Codes... it Just Put In , , , Etc...



<P ALIGN="center"> I'm Trying To Put This In The Center... Did It Work? </P>

EDIT:
Nope... -_-
 
Last edited:
HTML is so easy. You copy the html of a page then edit it, it's fun.
 
  • Thread Starter
  • Thread starter
  • #4
+Maniacal=Maniac+ said:
Hmmm... I Never Really Tried Typing In The Codes... it Just Put In , , , Etc...



<P ALIGN="center"> I'm Trying To Put This In The Center... Did It Work? </P>

EDIT:
Nope... -_-[/QUOTE]

It's actually used for posting on forums, hehe. Just making forums or websites.
 
I use very basic HTML, in my sig for instance. I spent a couple hours learning a few different tags for my MySpace page.
 
i dont really know how to build websites with HTML but if i want to extract something out of HTML, i usualy can do it. like with myspace if you use one of them myspace generators it usualy says something like "This was made from www.somemyspacegeneratorsite.com", i can go through the HTML and get rid of it and i can modify things but thats about it. also HTML is pretty similar to BBCode that forums use so that helps some
 
Back
Top