Week 1-3 Flashcards
Is a markup language for
describing web documents (web pages).
HTML
Declaration defines the document type to be HTML.
DOCTYPE
The text between _______ and _______ describes an HTML document?
<html> and </html>
The
text between ______ and _______ provides information about the document?
<head> and </head>
The text
between _______ and ________ provides a title for the document?
<title> and </title>
The text between
_______ and ________ describes the visible page content?
<body> and </body>
The text between ____ and
____ describes a heading.
<h1> and
</h1>
The text between ___ and ____ describes paragraph?
<p> and </p>
HTML ____ are keywords (____ names) surrounded by angle brackets?
tags
The purpose of a ___ ________ (Chrome, IE, Firefox, Safari) is to read HTML
documents and display them?
web browser
The browser does not display the ____ ____, but uses them to determine how to display the scripting documents.
HTML tags
The <________> declaration helps the browser to display a web page correctly?
<!DOCTYPE>
What year is the release of HTML version?
1991
What year is the release of HTML 2.0 version?
1995
What year is the release of HTML 3.2 version?
1997
What year is the release of HTML 4.01 version?
1999
What year is the release of XHTML version?
2000
What year is the release of HTML 5 version?
2012
HTML headings are defined with the <h1> to <h_> tags</h_>
<h6>
</h6>
HTML links are defined with the ___ tag?
<a></a>
The link address is specified in the ____ ________.
href attribute
__________ are used to provide additional information about HTML elements.
Attributes
HTML images are defined with the _____ tag.
<img></img>
HTML documents are made up by HTML ________.
elements
HTML ________ are written with a start tag, with an end tag, with the content in
between.
elements
HTML elements with no content are called _____ elements.
empty
the ____ tag defines a line break.
<br></br>
____ is an empty element without a closing tag
<br></br>
Attributes provide __________ ___________ about an element
additional information
Attributes are always specified in the _____ tag
start
__________ come in name/value pairs like: name=”value”
Attributes
The document language can be declared in the ______ tag.
<html>
</html>
The language is declared in the ____ attribute.
lang