HTML Flashcards
Give five Examples of HTML Element Tags
paragragh, h1, h2, header, body
Give five Examples of HTML Element Tags
<p> </p>
<h1> <h2> etc.</h2></h1>
Where do you put non-visable content about the HTML Document
Within the tag
Where do you put visible content about the HTML document?
Where do the and tags go in a valid HTML Document
first then
What is the purpose of a declaration
It is to tell the browser which HTML it is working with since there are different types of HTML
What is the purpose of HTML Attributes
to provide additional information on HTML elements.
Where do you put non-visable content about the HTML Document
Within the tag
Where do you put visible content about the HTML document?
Where do the and tags go in a valid HTML Document
first then
What is the purpose of a declaration
It is to tell the browser which HTML it is working with since there are different types of HTML
Give an example of an HTML entity (escape characters)
© to show the ‘Copyright’ symbol
What HTML tag is used to link to another website?
the anchor tag [<a>]</a>
What is an absolute URL
It is a URL that goes AWAY from your website
ex. https://www.google.com
What is a relative URL
Is something that would navigate within your website
How do you indicate the relative link to a parent directory?
<a></a>
How do you indicate the relative link to a child directory?
<a></a>
How do you indicate the relative link to a grand parent directory?
<a></a>
How do you indicate the relative link to the same directory?
You would just use the file name.
<a></a>
What is the purpose of an HTML form element?
To collect Data from any visitors from your website, it also gives other functionalities as well like searching the website.
Give five examples of form control elements.
Text Area Text input Radio Buttons Drop down Boxes Check Boxes
Give three examples of type Attributes
Text input
Radio Buttons
Check Boxes
Is an HTML element a block element or an inline element?
Inline Element
What are the six primary HTML Elements for creating tables?
What purpse do the [thead] and [tbody] elements serve?
[thead} is the Headings of the table
[tbody] is the body, or information/data shown, for the table
Give two examples of data that would lend itself well to being displayed in a table?
Revenue and customer information.