Term
|
Definition
HTML elements can have one or more ______ es, separated by spaces. You can style elements using CSS by selecting them with their classes. |
|
|
Term
|
Definition
An HTML element can have an ____ attribute to identify it.___ elements should always be unique to that single element, and each element should never have more than one id. |
|
|
Term
|
Definition
Links tell the browser where to go using an ______ attribute, which stores a URL. |
|
|
Term
|
Definition
The ______ is the container for all of a page's content. Comes after the tag, within the overall tag |
|
|
Term
|
Definition
An element that is an immediate descendent of another element or nested within another element is called a _____. These become useful when using CSS child selectors and psuedo-elements. |
|
|
Term
|
Definition
HTML _______ are sometimes used in code to explain parts of the markup. They are similar to ________ in other languages. Users do not see __________ in their browser. |
|
|
Term
|
Definition
A block level container (or 'division' of the web page) for content with no semantic meaning. |
|
|
Term
|
Definition
Tag that surrounds important content that is invisible to the user, but is important to the browser. Elements within this tag contain metadata about the page and links to stylesheets, scripts, etc. |
|
|
Term
|
Definition
_______ elements like h1, h2, h3, ... allow you to use six levels of document ________, ranging from largest to smallest, breaking up the document into logical sections. For example, the word __________ above is wrapped in a h2 tag. |
|
|
Term
|
Definition
This tag creates a black line one pixel thick that runs the all the way across its container. It can be styled to look differently with CSS. |
|
|
Term
|
Definition
stands for Hyper Text Markup Language. It is the language used to create all websites. |
|
|
Term
|
Definition
This is the basic tag that defines an html document. |
|
|
Term
|
Definition
take the user to another webpage when they click on it. The most common attribute used with links is href, which tells the browser where the link goes. |
|
|
Term
|
Definition
embeds an image into your HTML. Always found with the 'src' attribute, which tells the browser where to find the image. Note that the tag is self-closing. |
|
|
Term
|
Definition
This tag is used in a block of text to force a line break. This is to be used for things which are a single paragraph, but where this formatting is necessary such as poems or addresses. |
|
|
Term
|
Definition
used to connect your document to a related resource (very different from hyperlinks, which take you to another webpage when you click on them); appear only in the head section of a document so they do not alter the content, but only the presentation; most commonly used to connect to a stylesheet, script, favicon, or alternate format of the page such as an RSS feed or PDF. |
|
|
Term
|
Definition
HTML supports two kinds of ______: ordered ______ and unordered ______. Within lists each individual list item has its own tag. |
|
|
Term
|
Definition
lists whose items are denoted with bullet points |
|
|
Term
|
Definition
lists whose items denoted with numbers |
|
|
Term
|
Definition
One of the most common tags in HTML - it denotes a paragraph of text. It often has other elements nested inside of it, such as , a, strong and em. |
|
|
Term
|
Definition
An element for displaying information in rows and columns. Supports headers and footers for labeling columns. Divides information into rows (denoted by the tr tag) which contain cells (denoted by the td tag). |
|
|
Term
|
Definition
basic labels that define and separate parts of your markup into elements |
|
|
Term
|
Definition
This tag tells the browser what to display as the page title at the top and tells search engines what the title of your site is. It goes inside head tags |
|
|