Post by: Eric Li
HTML tutorial
9
Some final notes
Points to remember
- Writing tags in HTML is not case senstive, so, wrting in capital letters or not will not make any difference but to keep things standard, it would be better to write everything in small letters.
- Pay attention to what you write as a small typo in a tag can result in the tag not working as intended. Fortunately, as HTML is just static webpages, it's quite easy to see what's wrong to what you expected.
- When using the color attribute, remember to write it as color and not colour.
- When using the <img src=""> tag to insert an image in the page, link to its url on the web or if you're linking to an image uploaded on the same directory as the current webpage, then only type the part after the direectory it's in. For example: <img src="/imagename.png">
- Lastly, pratice and always be curious about how other wbepages are written, you'll learn a lot from it. To see how a webpage is written, i.e., to view the source code of a webpage, do View -> Page Source in Mozilla Firefox or View -> Source in Internet Explorer.
For a complete and world standard tutorial in HTML, do visit W3CSchools's HTML Tutorial.
Have fun scripting and happy learning!
P.S.: I was pointed out to this page, The HTML Hell Page, which is a rant on what is expected NOT from you.
| | Comment rules