HTML Notes Flashcards
Describe caching
Caching is the process of storing recently used information so that a computer can quickly access it if required. A browser, for example, caches search information on your hard drive
Whats a typical workflow for implementing a website?
- brainstorm 2. mockup 3. site organization 4.
Why is the home page named index.html?
The home page is called index.html because most web servers look for a default page with the name index. In the event that someone accesses your site without specifying a file name, the server uses index as the default
What is a markup language?
A markup language is a language that uses tags to define elements within a document. A tag is a way to indicate what should be displayed on a screen when a page loads
What are the differences between HTML4 and HTML5
The differences between html4 and html5 are 1. html5 has a simplified doctype declaration 2. html5 has a canvas element 3. html5 has header and footer elements 4. html5 has the section elements 5. html5 has and elements 6. html5 passed some control to css, eg. no more , and <big> elements</big>
What is XHTML?
XHTML is extendable HTML, a more stricter version of HTML
What are the differences between XHTML and HTML?
The differences btwn XHTML and HTML are 1. XHTML is written in lower case, while HTML tags can be a mixture 2. All XHTML elements must have an end tag 3. All attributes in XHTML must be quoted 4. XHTML requires that tags are nested correctly
Whats the purpose of the element?
The element tells the browser that all of the code within is of HTML type
What is the purpose of ?
tells the browser what version of html we want to use, like so,
What is ?
is a language attribute that tells the browser which language code to use when interpreting the page, like so,
What type of data goes in the section?
The section contains machine code, mostly metadata describing how the page should be displayed, search content, etc
What is ?
is an attribute describing the character set encoding for the document, eg
What is unicode?
Unicode is a way to assign unique numbers to characters, for the computer to process, since computers only process numbers. The unique number assigned by Unicode is called a code point
What is UTF-8?
UTF-8 is a character encoding capable of encoding all possible characters, or code points, in Unicode
What is ASCII?
ASCII, American Standard Code for Information Interchange is character-encoding scheme, much like UTF-8. It is being replaced by UTF-8, which includes it (ASCII) as a subset