First, here is some terminology:
W3C ~ World Wide Web Consortium. It sets the standards for websites and web browsers.
HTML ~ HyperText Markup Language. Code for creating static webpages.
XHTML ~ eXtensible HyperText Markup Language. It is the next generation of HTML.
Tags ~ < tagtype />. An HTML element that tells the browser something.
Remove these ads by
Signing UpStep 1The DOCTYPE tag
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//
EN" "http://www.w3.org/TR/xhtml/DTD/xhtml-transitional.dtd">
Take a look at the code. It tells the web browser some very important things, such as:
~The Page is in English (EN)
~It is using XHTML 1.0 (eXtensible HyperText Markup Language - it's like the next generation of HTML)
~It states the place where W3C standards can be found (http://)
| « Previous Step | Download PDFView All Steps | Next Step » |
![]() |
Add Comment
|






































