| |||||||||||||||
![]() | ![]() | ![]() |
| |||
| HTML Tutorial HTML Tutorial This tutorial will teach you HTML, which will also help you to make custom pages for websites. HTML is very easy to learn! HTML Stands For HyperText Markup Language Okay, we will start with the basics... In HTML there are two types of tags...
Code: <HtMl> & <html> are the same thing!
The tag to make a text Bold is: <b>This text will be bolded</b> The OutCome of the above will be: This text will be bolded Remember to add a closing tag which is represented by </b>... without adding that closing tag, the outcome won't be perfect! Next comes Italics... The tag to make a text Italic is: <i>Italics</i> The OutCome of the above will be: Italics Again, don't forget to add the closing tag! Now Comes Underlined... The tag to make a text Underlined is: <u>Underline</u> The OutCome of the above will be: Underline Another one which people don't use much is a "Strike Out"... This time the tag is: <strike>You're Out!</strike> The OutCome of the above tag will be: You're Out! You can use several tags at the same time... Example: If I want a text bold + Italic...I will use <b><i>This text will be Bold + Italic</i></b> The OutCome of the above tag will be: This text will be Bold + Italic It doesn't make a difference if you switch the starting tags position... Example: If you use <i><b> Instead of <b><i> as your "Starting Tag" The above tags were basic "Text" Tags... Okay, let's go on to the next step...If we want to align our text.. Center We will use: <center>This text will be centered</center> The OutCome of the above tag will be: This text will be centered So now you know how to make basic text effects and how to align texts... If you want to test yourself out...Visit This Page. |
| |||
| I think HTML is easiest computer language i've ever learned. Your lesson is easy to understand. Thanks for your support. Besides, i have another link that teaches you HTML: Click Here Thanks |
| |||
| HTML is the bees knees! This place is good for HTML tutorials as well: http://www.theonlinedeveloper.com/ |
| |||
| Re: HTML Tutorial A few additional articles can be found here. Intentionally kept easy and simple to be helpful for non IT people too. |