HTML CodingYou can code HTML tags by hand, it really is quite simple. Various tools exist which will tag documents for you, but they tend to create redundant spaghetti code, making the document larger than it needs to be. Learning the tags themselves gives you a deeper understanding of the structure of markup languages than one could ever obtain by using an editor. Much of the code on this site does not conform to any strict standard other than:
For example, </p> tags are eschewed as being too much work, adding unnecessary visual clutter, and their absence does not seem to hamper IE and Netscape browsers from interpreting the page. Coding by hand keeps your document lean. It enables you to structure the code for readability. It also gives you a better understanding of the underlying processes that go into marking up a document with tags, which is important to know if XML ends up conquering the world. You can use vi to edit files on the server. When learning to program HTML, there is one rule which everyone should follow, and that is: Steal from your neighbor. View the source. Copy and paste. Take whatever you want. HTML documents are really just text documents that have tags added to them. And there are only a handful of HTML tags one needs to know to begin coding:
|
Author: Michael Pareene
Last Update: Michael Pareene