HTML Flashcards
Where do you put non-visible content about the HTML document?
in between the anchor brackets.
Where do you put visible content about the HTML document?
in between the element tags. [p] Visible Content [/p]
Where do the and tags go in a valid HTML document?
nested in between the html tags.
What is the purpose of a declaration?
to tell the browser what type of html is being used.
Give five examples of HTML element types.
html head body h1 p
What is the purpose of HTML attributes?
to give additional information about the element.
Give an example of an HTML entity (escape character).
Copyright = © = & copy ; Trademark = ® = & reg ;
How do block-level elements affect the document flow?
they take up a new line and use all of the horizontal space.
How do inline elements affect the document flow?
they allow multiple elements to be on the same line.
What are the default width and height of a block-level element?
Width = 100% Height = as much as the content needs / auto
What are the default width and height of an inline element?
Width = auto Height = auto
What is the difference between an ordered list and an unordered list in HTML?
ordered list are numbered.
unordered lists use bullet points.
Is an HTML list a block element or an inline element?
all HTML lists are block elements
What HTML tag is used to link to another website?
a href = “”
What is an absolute URL?
an absolute url links to a completely seperate website, and has the protocol and domain in the url.
What is a relative URL?
a relative url links to another page on your own website, and does not need the complete url.
How do you indicate the relative link to a parent directory?
a href = “../file-name”
How do you indicate the relative link to a child directory?
a href = “directory/file-name”
How do you indicate the relative link to a grand parent directory?
a href = “../../file-name”
How do you indicate the relative link to the same directory?
a href = “file-name”
What is the purpose of an HTML form element?
to display a portion of the HTML that the user can interact with such as buttons or dropdowns.
Give five examples of form control elements.
textarea select option button label
Give three examples of type attribute values for HTML elements.
type
name
id
Is an HTML element a block element or an inline element?
inline element
What are the six primary HTML elements for creating tables?
table thead tbody tfoot tr td th
What purpose do the thead and tbody elements serve?
thead creates the heading in a table.
tbody describes all the body contents in a table.
Give two examples of data that would lend itself well to being displayed in a table.
TV channel guide, sports stats