![]() |
What is HTML? What are HTML Tags? Follow our basic html tutorial and learn to write html code. |
|
Handy
Tip: The best way to learn how to write html is to look at
the source code behind every webpage. To look at the source code
choose "View" from the top browser tool bar and click
"Source". This then shows the code in Notepad and you
can even save it to play around with the html code and see what
each line does.
Learning Basic html.A guide to learning html for beginners. HTML are initials that stand for Hyper Text Markup Language
HTML is the code behind your webpage and is what your browser looks for to display a webpage, the way the webdesigner intended it to look, and is a series of tags <tags> that tells the browser where to display what. It is really a series of simple commands that you give to the browser, just like telling your dog to sit, and because it is in plain English it is easy to learn. For example, if you want your text to show in a bold type, you command it <bold> to be bold text </bold>, it really is that easy. Keep
this in mind: HTML documents must be text
only. If you are going to start learning to write HTML, it is a good idea to learn to look at other authors' HTML pages. The actual html potion of the page behind the pretty page you see in front of you now. Looking at another's html code helps you learn how things are done and you can copy the style of pages that you like. Please do not just steal and copy the pages, but no one will be upset if you make the style in much the same way. For example, if you were going to build a house, you would look around to see what styles you like before deciding on your own design. Same thing here, look around the web and see what styles you like and apply them to your own ideas. Here's how you look at an HTML document (known as the "source code")
Try
it with this page. Click on VIEW and then
choose the SOURCE. HTML works in a very simple, very logical, format. It reads like you do, top to bottom, left to right. HTML is written with TEXT. What you use to set certain sections apart as bigger text, smaller text, bold text, underlined text, is a series of tags. Think of tags as commands. For example if you want a line of text to be bold. You will put a tag at the exact point you want the bold lettering to start <bold>and another tag where you want the bold lettering to stop.</bold> There you have an example of how tags make commands and tell the browser how to display the text. Just like telling a dog to sit. You give the command. All tags that are opened must correspondingly be closed, just as if you are writing a quoted statement with those "inverted commas". A tag is closed this way </tag> therefore we open a new tag <bold> and close the tag </bold> Different tags call different functions. A full list of html tags and their functions is provided here. Like to write a page of html. C'mon, let's do it together here.
|
Custom Search
|