HTML Features Flashcards
(40 cards)
element adds a title to your page
<title>
</title>
should describe the content and the meaning of the page
The title
The text is used by search engine algorithms to decide the order when listing pages in search results.
page title
The <title> element</title>
- defines a title in the browser toolbar
- provides a title for the page when it is added to favorites
- displays a title for the page in search engine results
s a small image displayed next to the page title in the browser tab.
Favicon
all HTML elements can have attributes(TRUE or FALSE)
TRUE
provide additional information about elements
Attribute
Attributes are always specified in
the start tag
Attributes usually come in
name/value pairs
like: name=”value”
tag defines a hyperlink
<a></a>
attribute specifies the URL of the page the link goes to
href
tag is used to embed an image in an HTML page
<img></img>
attribute specifies the path to the image to be displayed
src
an alternate text for an image, if the image for some reason cannot be displayed
alt attribute
<a> tag, stands for</a>
anchor
By default, links will appear as follows in all browsers
- An unvisited link is underlined and blue
- A visited link is underlined and purple
- An active link is underlined and red
Default. Opens the document in the same window/tab as it was clicked
_self
Opens the document in a new window or tab
_blank
Opens the document in the parent frame
_parent
Opens the document in the full body of the window
_top
a full web address
absolute URL
A local link (a link to a page within the same website) is specified with a
relative URL
inside the href attribute to create a link that opens the user’s email program
mailto:
An unordered list starts with the ____ tag
<ul>
</ul>