HTML TAGS Flashcards
Which HTML tag is the root directory
< html >
The root directory has two children, who are they
< body >and < head >
what information is contained in the < head > ‘s tag
the documents title
meta data
links to css stylesheet
what is the <div> tag used for</div>
to group a unit of element within the same container
the HTML tag attributes; id, class and name is used for what purpose
to give a html element a unique name
which HTML tag is used to link a CSS stylesheet
< link >
what attribute is used to link a specified URL to a HTML document
href=””
the href attribute is used with which html tags
< link > and < a >
which attribute is used to tell a browser to open a link
target
what is the <div> tag used for</div>
to group a unit of element within the same container
the rel=”” attribute serves what purpose
it specifies the relationship between the current document and the linked document.
what attribute are used to compose a < link > html tag
rel=”stylesheet” and
href=”style.css”
target=”top” opens a link where
in the full body of the window
target=”parent” opens a link where
in the parent’s frame
target=”self” opens a link where
default setting in the same window
target=”blank” opens a link where
in a new window
which html tag is used to link a image to a document
< img >
which attributes are used with < img > tags
src=” path to file”
atl=” alternative for if the img file does not loaded”
width’=””
height=””
which html tag is used to create lists
<ol> or </ol>
<ul></ul>
<ol> and </ol>
<ul> html tags, use this tag to list items</ul>
<li>
</li>
this html tag is used to create a table
< table >
what attribute is used to set a tables width
style=” width:100% “
this property is used to define each row
< tr >
this property is used to define the data in a tables row
< td >