HTML is one of the easiest languages to learn. Specification: Programming languages. But I’m pretty sure you understood what I meant.
HTML is easy, because once you learn how to use tags, it is all a matter of incorporating tags in a nice, clean manner to make the website aesthetically brilliant. But HTML itself will not give you a nice, clean website. You need a balance of HTML, CSS, Javascript, and PHP as well as XML, ASP and others (depends on your goal). A metaphor for these languages is like a car. HTML is the frame of the car, seats, hood, glass, CSS is the paint and luxury accessories, Javascript is the engine and wheels, while PHP, XML, ASP (and others) are hood ornaments and other items. Anyways, I digress.
So if you learned the basics of HTML programming, all you’ll need to learn are the awesome tags. Here is a chart with the tags and what they do. It isn’t all the tags, just some basic ones. For this tutorial, look over the tags, and then scroll down.
Tag
|
What it Does
|
Example
|
What Example Looks Like
|
</td>
|
Bolds Text
|
Bolded Text
|
Bolded Text
|
</tr>
</td>
Centers Text
|
Text
|
Text
|
</tr>
</td>
|
Changes Font
|
<font face=”Arial”>Text</font>
|
Text
|
</tr>
, , …
</td>
Heading Size (notice the smaller the number, the larger the heading)
|
Heading </p>
Heading
Heading</td>
|
Heading
Heading
Heading</td> </tr>
|
</td>
|
Italicizes words
|
Text </p>
<font face=”Arial”>Cool Text</font></td>
|
Text Cool Text
| </tr>
</td>
Creates an input box
|
</p>
<li type=”disc”>Item 1</li>
<li type=”disc”>Item 2</li>
<li type=”disc”>Item 3</li>
<li type=”disc”>Item 4</li>
<li type=”disc”>Item 5</li>
<li type=”disc”>Item 6</li>
</td>
|
</p>
Item 1
Item 2
Item 3
Item 4
Item 5
Item 6
</td> </tr>
|
| | | |
Leave a Comment