They Said It...
I do not believe it is in the best interests of religion to invite the civil magistrate to direct its exercises, its discipline, or its doctrines; nor of the religious societies, that the General Government should be invested with the power of effecting any uniformity of time or matter among them.
HTML for Beginners |
What HTML Is *Not*Submitted by Syscrusher on Mon, 2005/06/06 - 23:09.
It is crucial to good web design that you understand what HTML is, and what it is not. HTML describes the content and structure of a document (paragraphs, sections, tabular information, and links) but not its exact layout on a page. Not only will your document be laid out and arranged differently on every different browser, but even the same browser will make it look different on different video monitors, different operating systems, and so on. The World Wide Web is not print media, and most of the worst design mistakes in the Web are made by people who forget this important distinction. This particular way of fitting a round peg (HTML) into a square hole (exact page layout) is likely to be a major headache for you if you insist on trying it -- so don't bother. Relax and embrace HTML for what it is. If you need paper-like layout control, publish on paper or use a specialized tool like Adobe Acrobat instead of HTML. What does this mean in practical terms? For starters, you will not know exactly where text will wrap at the end of lines. Don't believe me? While viewing this very page, try using your pointer (mouse) to resize the browser window. Watch how the text wraps differently, becoming narrower or wider as needed. Good web design doesn't just allow this to happen, it takes advantage of it as a feature. Some browsers will display, or render, the same page element in different ways. What typefaces does the visitor to your site have installed on his or her machine? A lot of [bad] web designers embed tags in their pages that request specific typefaces, like "Uncial Bold 12 point". But the typeface comes from the PC, not from the web, so if a visitor has never heard of your favorite fancy typeface, their view of the page will be totally different! Different kinds of computers display graphics in different ways, depending on the capability of the hardware. Some computers (such as mainframes and VAXes) don't have graphics at all! Good web design not means that your pages will work correctly on a wide variety of computers, operating systems, and browsers. Here are some specific bad habits you should avoid:
In general, the philosophy of web page design should be to fail gracefully. In other words, feel free to use all the advanced features (frames, graphics, sound, video clips, typefaces, and so forth) that you wish, but make sure that your pages are still pleasant to view even when these new bells and whistles aren't available to the browser. The rest of this tutorial will point out specific ways to achieve this goal. ( categories: Web Design | Tutorial )
|