HTML 5
1 / 91
Term:
Definition:
Show example sentence
Show hint
Keyboard Shortcuts
  • Previous
  • Next
  • F Flip card

Complete list of Terms and Definitions for HTML 5

Terms Definitions
Links <a href="ex.html">example</a>
<b> Defines bold text
<script> Defines a script
<ins> Defines inserted text
<abbr> Defines an abbreviation
html hyper-text markup language
URL uniform resource locator
<button> Defines a push button
<html> Defines an html document
<tr> Defines a table row
<tbody> Defines a table body
<dd> Defines a definition description
<center> Deprecated. Defines centered text
&lt;body&gt; &lt;/body&gt; body of document.
<br> Inserts a single line break
<col> Defines attributes for table columns 
Heading tags <h1>  </h1   goes through h6
Image in another folder &lt;a href=&quot;bev/ex.html&gt;example&lt;/a&gt;
what are hyperlinks? links webpages together
<font> Deprecated. Defines text font, size, and color
<iframe> Defines an inline sub window (frame)
The _____ attribute specifies the color of the top and left edges of a table. bordercolorlight
Authors may specify [what] style sheets that user agents must apply in addition to any alternate style sheet. persistent
[what] is a variable-length character encoding for Unicode which is backward compatible with ASCII. UTF-8
Which element help divide content? &lt;div&gt; &lt;/div&gt;
<option> Defines an option in a drop-down list
ol ordered list:order can be 1,2,3 or i,ii,iii, etc.
storyboard a rough sketch showing the desired appearance of your final Web page...it shows the elements you want to include and how you want them arranged on the page.
What is the attribute of the &lt;colgroup&gt; tag that defines the default number of columns in the group? span
What control type of the &lt;input&gt; element is used to create a graphical button that submits a form when activated? image
What is the attribute of the &lt;frame&gt; and &lt;iframe&gt; tags that defines the request frame borders? frameborder
What does the &lt;ul&gt; tag define? unordered list
True or false: The &lt;title&gt; tag is allowed in the &lt;head&gt; element of an HTML document. true
What does the &lt;!-- --&gt; tag define? comment
True or false: HTML tags are case-sensitive, so &lt;b&gt; is not the same as &lt;B&gt;. false
The three possible values of the valuetype attribute of the &lt;param&gt; element are &quot;data&quot;, [what], and &quot;object&quot;. &quot;ref&quot;
Which HTML 4.01 DTD includes elements and attributes that have not been deprecated and do not appear in framesets? strict
What is the attribute of the &lt;textarea&gt; tag that prohibits changes to the control? readonly
What is the attribute of the &lt;head&gt; tag that defines the named dictionary of meta info? profile
What is the attribute of the &lt;input&gt; and &lt;object&gt; tags that defines the control name submitted as part of a form? name
What javascript command extracts the current day of the month from the Now Variable , storing it in a variable named &quot;tdate&quot;. var Tdate=Now.getDate();
How do I create a hyperlink? <pre><a href="linktext">Words</a></pre>
<h1> to <h6> Defines header 1 to header 6
hyperlinks text or graphics that are formatted so that users move from one file to another on the World Wide Web by clicking on them
What element is provided as a more general solution for including images in an HTML document than the &lt;img&gt; element? &lt;object&gt;
What value of media descriptor is used to show that a document is intended for portable, small-screen devices? handheld
What is the HTML character entity name for the thin space character? &amp;thinsp;
What is the URI scheme used to identify an SMTP e-mail address and sometimes the default content of an e-mail? mailto
What is the attribute of some HTML tags that defines the document-wide unique identifier? id
True or false: HTML tables cannot be contained inside of other HTML tables. false
True or false: HTML elements are the same as HTML tags; they are just two different words for the same concept. false
True or false: Each additional line of a comment (which is enclosed by a &lt;!-- and --&gt; pair) should begin with a string of hyphens (--). false
True or false: If a browser cannot find a named anchor when it jumps to a page, an error occurs. false
True or false: The &lt;area&gt; tag is empty, and is forbidden to have an end tag. true
It is only possible to define a server-side image map for the [what] and &lt;input&gt; elements. &lt;img&gt;
HTML documents are plain text files made up of [what]. HTML elements
HTML tag &lt;html&gt; tells computer it is a html ducument
Che comandi contiene un html? Formattazione, inserimento parti multimediali, link ipertestuali
syntax of html element An HTML element starts with a start tag / opening tag An HTML element ends with an end tag / closing tag The element content is everything between the start and the end tag Some HTML elements have empty content Empty elements are closed in the start tag Most HTML elements can have attributes  
Web browser a software program that allows you to view Web pages.
What does the acronym HTML stand for? hypertext markup language
True or false: Frames can be used to separate an HTML page into multiple independent documents. true
When the valuetype of a param is equal to [what], it means that the param's value attribute is an identifier that refers to an object declaration in the same document. &quot;object&quot;
The acronym SGML stands for [what]. Standard Generalized Markup Language
What HTML tag is used to define small text style? &lt;small&gt;
What HTML tag is used to indicate a citation or reference to other sources? &lt;cite&gt;
What HTML tag is used to define an ordered list? &lt;ol&gt;
What HTML tag is used to define a table data cell? &lt;td&gt;
What is another way of writing the &lt;br&gt; tag to show that it is closed, even though there is no &lt;/br&gt; closing tag? &lt;br /&gt;
&lt;h1&gt; element consists of the enclosing tags and the content in between
what does html stand for? hyper text mark up language
How do I link an external CSS? <pre>&lt;LINK rel="stylesheet" type="text/css" href="externalcss.css"&gt;&lt;/pre>
How are attribute values expressed? Attribute values should always be enclosed in quotes.
head section (of a Web page) contains identifying and descriptive information about the web page
A [what] is a computer or its computer program that is responsible for accepting HTTP requests from web browsers and serving up web pages. web server
Before being acquired by Adobe in 2005, the Adobe Flash technologies were known as [what]. Shockwave Flash (Macromedia Flash)
How many numbered heading tags are available? For example, &lt;h1&gt;, &lt;h2&gt; ...? 6 (&lt;h1&gt; through &lt;h6&gt;)
Which tag contains the document itsel, not the title &lt;body&gt; The Document &lt;/body&gt;
What is the syntax for attributes? Attributes come in name/value pairs like: name="value".
The first part of the URI syntax is the [what], such as http, ftp, mailto, etc. scheme (scheme name)
Which tag defines a checkbox in an HTML 4.01 form? &lt;input type = &quot;checkbox&quot;/&gt;
What are the attributes for a option box? <pre><Select name="Title" size="1"> <OPTION></OPTION></pre>
What else are HTML documents called? HTML documents are also called web pages.
What is the common HTML mistake demonstrated in this example: &lt;img src=&quot;abc123.png&quot;&gt; missing required attribute (should be &lt;img src=&quot;abc123.png&quot; alt=&quot;alternate description&quot;&gt;
What is a program loop A program loop is a set of instructions that is executed repeatedly. There are two types of loops: loops that repeat a set of number of times before quitting ( for loops ) and loops that repeast until a certain condition is met ( while Loops.)
Does a browser display HTML tags? A browser does not display the HTML tags, but uses the tags to interpret the content of the page.
The second tag in an HTML tag pair is called the [what]. end tag (close tag)
how do you get it to ignore the white space if you want some crazy spacing in text content &lt;pre&gt; CRAZY CONTENT &lt;/pre&gt;
What is meant the the term HTML element? An element is anything within the start tag and end tag.
What keyword is used in an HTML tag for a paragraph? HTML paragraphs are defined with the "p" tag.
What does the middle part of a character entity consist of? an entity name, or a # and an entity number