Basic HTML

Learn the Basics

Okay, so you're a beginner with HTML, right? And you want to learn some codes that you will need oftenly, right? Okay, well let's get started! First of all, HTML means HyperText Markup Language. It is commonly used for web designing and is a good start for web designing. However, some users move on to PHP, but that's a different story.

Links
Let's start off with the links. Links are an important thing for layouts (chya, like duh). There are two types of common links: text and image links.
___Text Links:

<a href="linkhere.html">LINKAGE</a>

___Image Links:

<a href="linkhere.html"><img src="imglink" border="0"></a>
The reason I put border="0" is because I don't want that blue border around it. But you can take it out if you want.

-----------------------

Underlining, Bolding, and Italics
This is very easy.

<u>underline</u>
<b>bold</b>
<i>italics</i>

----------------------------

More easy codes
Here are some more simple simple codes that ANYONE can do, so I don't really need any explaining. XD

<textarea>BLAH</textarea> = Textboxs
<p>BLAAAAAAH</p> = Paragraph
Blah<br> = Break (make a new line)
<img src="piclink"> = Image
<marqee>Put some text here</marquee> = Normal text marquee