Week 2 Flashcards
EMPOWERMENT TECHNOLOGIES (MTECH) (38 cards)
____ stands for _________ ______ ________, and it is the
most widely used language to write/create Web Pages?
HTML (Hypertext Markup Language)
_________ refers to the way in which Web pages (HTML documents) are linked together. Thus, the link available on a webpage is called _________?
Hypertext
HTML is a Markup Language which means you use HTML to simply “____-__” a text document with tags that tell a Web browser how to structure it to display.
mark-up
HTML was developed with the intent of ________ the structure of documents like headings, paragraphs, lists, and so forth to facilitate the sharing of scientific information between researchers?
defining
HTML is being widely used to format web pages with the help of _________ ____ available in HTML language?
different tags
The tag offers a way to structure your text into different paragraphs. Each paragraph of text should go in between an opening and a closing tag?
<p></p>
Whenever you use the _____ element, anything following it starts from the next line?
<br></br>
This tag is an example of an empty element, where you do not need a pair of opening and closing tags, as there is nothing to go in between them?
<br></br>
You can use ________ tag to put any content in the center of the page or any table cell?
<center>
</center>
Are used to visually break-up sections of a document?
Horizontal lines
The ____ tag creates a line from the current position in the document to the right margin and breaks the line accordingly?
<hr></hr>
An HTML element is defined by a ________ tag. If the element contains other content, it ends with a _______ tag, where the element name is preceded by a _______ ______(/)?
Starting, closing, and forward slash
An _________ is used to define the characteristics of an HTML element and is placed inside the element’s opening tag?
attribute
All attributes are made up of two parts: a ____ and a _____?
Name and Value
The ____ is the property you want to set. For example, the paragraph <p> element in the example carries an attribute whose name is align, which you can use to indicate the alignment of paragraph on the page?
name
The _____ is what you want the value of the property to be set and always put within quotations?
value
What are the four core attributes that can be used on the majority of HTML elements?
Id
Title
Class
Style
What are the two primary reasons that you might want to use an id attribute on an element:
unique identifier and to distinguish between elements that have the same name.
The _____ attribute gives a suggested title for the element.
title
The _____ attribute is used to associate an element with a style sheet, and specifies the class of element.
class
The style attribute specifies an ______ _____ for an element.
inline style
It allows you to indicate to the browser about the direction in which the text should flow?
The dir attribute
It allows you to indicate the main language used in a document, but this attribute was kept in HTML only for backwards compatibility with earlier versions?
The lang attribute
it is the XHTML replacement for the lang attribute. The value of the ___:____ attribute should be an ISO-639 country code?
The xml:lang attribute