Lesson 1 Flashcards
Three common html terms to begin with
elements tags attributes
what is an element
designator that defines the structure and content within a page. <a>s</a>
what is an element
designators that define the structure and content within a page. <a></a>
what is a tag
the use of less than and greater than angle brackets surrounding an element<>
what is an attribute
properties used to provide additional info about an element. id=””, class=”“,href=”“,src=””
what is the required structure of all html documents
doctype
html
head
body
what is the document type declaration
!DOCTYPE
which element identifies the top of the document, including any metadata (accompanying information about the page).
head
in which element does all of the visible content of the webpage fall within
body
what is an element
something that defines the structure and content within a page. <a>s</a>
what is a tag
the use of less than and greater than angle brackets surrounding an element<>
what is an attribute
properties used to provide additional info about an element. id=””, class=”“,href=”“,src=””
what are selectors
a selector designates exactly which element or elements within your html to target and apply styles(such as color,size and position)
ex:p{}
what do properties do
determines the style that will be applied to that element
ex:p{color:…;}
what are values
the text between the colon and semicolon