HTML Flashcards
Where do you put non-visible content about the HTML document?
Within the element tag head
Where do you put visible content about the HTML document?
Within the element tag body
Where do the head and body tags go in a valid HTML document?
Head comes after the opening tag element HTML, and body follows after the ending of the head element
What is the purpose of declaring !DOCTYPE?
Declaring a Doctype tells the web browser what kind of HTML version is being used
Give five examples of HTML element tags.
head and /head, body and /body, div and /div, p and /p, html and /html, span and /span
What is the purpose of HTML attributes?
Provide additional information about elements and are always specified in the start tag
Give an example of an HTML entity (escape character).
trademark sign “ ® “
How do block-level elements affect the document flow?
Block-level elements will always take up as much space as they can and start on the next line
How do inline elements affect the document flow?
Inline elements will continue on the same line as their neighbor elements, does not move to next line
What are the default width and height of the block-level element?
width = 100% , height = auto
What are the default width and height of an inline element?
necessary, follows property of block element
What is the difference between ordered lists and unordered lists?
Ordered lists are numbered or organized in some way or form, unordered lists are normally bulleted
Is an HTML list a block or inline element?
HTML list is a block element
What is the HTML tag used to link another website?
a (anchor tag)
What is an absolute URL?
Contains the entire address from protocol to domain name
What is a relative URL?
Relative URLs point to a file relative or a location/directory/file
How do you indicate the relative link to a parent directory?
../
How do you indicate the relative link to a child directory?
child folder name / file name
How do you indicate the relative link to a grand parent directory?
../../file name
How do you indicate the relative link to the same directory?
link to same folder, nothing else needed
What is the purpose of an HTML form element?
Allows users to perform functions online
Give five example of control elements.
textarea, button, select, input, button
Give three examples of type attributes for HTML elements.
checkbox, file-input, radio
Is an HTML element a block element or an inline element?
inline element
What are the six primary HTML elements for creating tables?
thead, tbody, table, td(table data), tr(table row), th(table header)
What purpose do the thead and tbody elements serve?
have the headings of the table, allows you to css style sections, have the bodies of the table, allow you to css style sections
Give two examples of data that would lend itself well to being displayed in a table.
Time tables, reports, report cards