Welcome to Web Design Guide
Web Design Standards Article
. For a permanent link to this article, or to bookmark it for further reading, click here.
13. Understanding HTML
from:Once you’ve learnt it, HTML is a relatively simple language. However, while the HTML tags themselves are easy, creating an HTML document that works as intended on a web server requires you to know a few extra things that aren't often explained.
Understand Doctypes- Often valid HMTL documents don't actually start with the tag – they have one extra tag before it. This is the doctype, and it must be present right at the top of your document for it to be valid HTML. There are 2 doctypes you need to know about-
And the XHTML one-
The main function of doctype is to tell the web browsers exactly what version of HTML your page was written in, to help them to interpret it correctly.
HTTP Errors-HTTP is the way a web browser communicates with a web server, and this communication includes information about your pages, such as histories, cookies etc. You need not worry about the internals of HTTP, but it's worth knowing that it works by the browser sending a request to the server for a certain page, and the server then responding with a code.
Your website should be set up to handle error codes well. For example, a 404 (page not found) error should show a page with links to the most useful parts of your site. Other common error codes include:
200 - OK
301 - Page moved.
403 - Forbidden (no authorization to access).
500 - Internal server error.
MIME Types- MIME types are another part of the HTML header. They tell the web browser what kind of file they are about to send. Browsers don't rely on HTML files ending in .html, JPEG images ending in .jpeg, and so on: they rely on the content-type header. Mentioned below are some common MIME types:
text/html – HTML
text/plain - plain text.
text/css - CSS
image/png - PNG image
image/gif - GIF image.
image/jpeg - JPEG image.
How to Insert things that aren't HTML- One of the common problems faced by HTML users is how to insert things like Javascript and CSS into an HTML document. Luckily this is one of the easiest problems to solve: you simply use the link and script tags, like-
And you’re done.
Web Design Standards News
Jeffrey Zeldman on his Web Design Manifesto 2012 - .net magazine
Jeffrey Zeldman on his Web Design Manifesto 2012 .net magazine Zeldman kindly talked to us about the reaction he's got since, why large type is of increasing importance to him, and why he wrote Web Design Manifesto 2012. .net: You say you got responses from people who seemingly didn't think you knew what your site ... |
Nebo Receives WebVisionary Award for Fantastic Typography - EON: Enhanced Online News (press release)
Nebo Receives WebVisionary Award for Fantastic Typography EON: Enhanced Online News (press release) The award celebrates the use of fonts as a key element of design and distinguishes the best online typography worldwide. “Typography is something I've always loved. As web standards have advanced, web typography is finally at a place where it rivals ... |
Web Marketing Association Names Best Mobile Web Sites and Best Mobile Apps of 2012 - Sacramento Bee
Web Marketing Association Names Best Mobile Web Sites and Best Mobile Apps of 2012 Sacramento Bee They include Creativity, Impact, Design, Content, Interactivity, Ease of use and Use of the medium. Each mobile website or mobile app entry is judged against other entries of the same format in its industry category and then against an overall standard ... |
What's responsive Web design all about? - Ars Technica
What's responsive Web design all about? Ars Technica When you consider how many different tablets, laptops, Web browsers, and operating systems access the Internet on a day-to-day basis, it's a small miracle that Web designers and developers manage to stay sane. There are, of course, Web standards and ... |
Large Type: One Web Designer Puts Content First in a Big Way - Forbes
Large Type: One Web Designer Puts Content First in a Big Way Forbes Jeffrey Zeldman, one of the highest profile designer/developers, made a particularly strong point about it in his “Web Design Manifesto 2012,” that he published yesterday. Zeldman is influential not only for his design, but for his writing and ... |


