Font size
Worksheetshtml basics exam
Total questions: 50
Worksheet time: 14mins
is the standard markup language for creating Web pages.
Hyper Text Markup Language
Hype Text Markup Language
Hyper Text Mark Language
Hyper Text Markup Languages
elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc.
Hyper Text Markup Language
Hype Text Markup Language
Hyper Text Mark Language
Hyper Text Markup Languages
consists of a series of elements
Hyper Text Mark Language
Hype Text Markup Language
Hyper Text Markup Language
Hyper Text Markup Languages
declaration defines that this document is an HTML5 document
<html>
<!DOCTYPE html>
<head>
<title>
element is the root element of an HTML page
<html>
<!DOCTYPE html>
<head>
<title>
element contains meta information about the HTML page
<html>
<!DOCTYPE html>
<head>
<title>
element specifies a title for the HTML page
<html>
<!DOCTYPE html>
<head>
<title>
element defines the document's body, and is a container for all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.
<body>
<title>
<h1>
<p>
element defines a large heading
<body>
<title>
<h1>
<p>
element defines a paragraph
<body>
<title>
<h1>
<p>
An ___________ is defined by a start tag, some content, and an end tag:
html tag
html
HTML element
body
____________________ do not have an end tag!
content
tags
html elements
Empty elements
is to read HTML documents and display them correctly.
wifi
desktop
apps
browser
The content inside ________ the section will be displayed in a browser.
<title>
<body>
<head>
<html>
The content inside the ________ element will be shown in the browser's title bar or in the page's tab.
<title>
<body>
<head>
<html>
An example of a simple text editor is all you need to learn HTML.
google chrome
mozilla firefox
wordpad
notepad
The HTML document itself begins with ______ and ends with ________
<html><\html>
(html)(/html)
<html></html>
html start html end
defines the most important heading
(a)
defines the least important heading
(a)
HTML paragraphs are defined with the (a) tag:
HTML links are defined with the (a) tag:
The link's destination is specified in the (a) attribute.
HTML images are defined with the (a) tag.
The source file for images
(a)
alternative text for images
(a)
tag defines a hyperlink
(a)
tag is used to embed an image in an HTML page
(a)
attributes of <img> provide size information for images
(a)
attribute of <a> specifies the URL of the page the link goes to
(a)
attribute of <img> specifies the path to the image to be displayed
(a)
attribute of <img> provides an alternate text for an image
(a)
attribute is used to add styles to an element, such as color, font, size, and more
(a)
attribute of the <html> tag declares the language of the Web page
(a)
attribute defines some extra information about an element
(a)
headings should be used for main headings
(a)
always starts on a new line
(a)
tag defines a thematic break in an HTML page, and is most often displayed as a horizontal rule.
(a)
element is used to separate content (or define a change) in an HTML page:
(a)
tag is an empty tag, which means that it has no end tag.
(a)
element defines a line break.
(a)
if you want a line break (a new line) without starting a new paragraph:
(a)
element defines preformatted text.
(a)
element is displayed in a fixed-width font (usually Courier), and it preserves both spaces and line breaks:
(a)
attribute is used to add styles to an element, such as color, font, size, and more.
(a)
is a CSS property
(a)
is a CSS value.
(a)
property defines the background color for an HTML element.
(a)
property defines the text color for an HTML element:
(a)
property defines the font to be used for an HTML element:
(a)
property defines the text size for an HTML element:
(a)
