Unit One Test Flashcards
(15 cards)
Element
any object on the page, which usually consists of an opening and closing tag
attribute
provide additional information about html
value
what you set an attribute to
opening tag
marks the start of an html element
closing tag
marks the end of an html element
container
semantic elements that can be used to define different parts of a web page
root element
tag is a container for all other html elements
head
region of the web page contains utility tags that work behind the scenes and provide information about your page. Only include the and tags
header
represents introductory content
body
primary content region of your page. It contains all the actual content including articles, headings, paragraphs, and footers
paragraph
Always starts on a new line while white space is automatically added after it
line break
inserts single line break in text
title
defines the title of the document and is shown in the document’s browser bar
background color
properly defines background color for an html element
<p style="background-color:#FFFFFF;"></p>
text color
defines text color for an html element
<p style="color:#FFFFFF;"></p>