1/37
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
<!DOCTYPE html>
begging of document
<html>
<head> </head>
<body> </body>
</html>
format after opening phrase
<h1> </h1>
largest heading
<h6> </h6>
smallest heading
<br> </br>
break in the text
<p> </p>
paragraph
<i> </i>
italicize
<u> </u>
underline
<strong> </strong>
bold
<a href=”LINK”>TEXT</a>
link other webpages - open in same tab
hypertext markup language
HTML meaning
anchor tag
<a> </a> is what
hyperlink reference
what does href stand for
<!-- TEXT-->
comments that don’t show on the webpage
an object on a page (body, image, paragraph)
what is an element
quality that described an element
what is an attribute
document type definition
what does DTD stand for
<!DOCTYPE html>
what is the DTD of HTML
phrase/inline elements
don’t break the flow of content - typically appear with block level elements and are used to style or markup small portions of text or inline content
<b> </b>
bold
<sup> </sup>
superscript
<sub> </sub>
subscript
<mark> </mark>
highlight
<a href=”website”target=”_blank”>TEXT</a>
open link in new tab
absolute link
points to a location on the web (external website)
nesting elements
placing one element inside of another element
nonbreaking space code
relative links
linking to a local file; used to link within the same website
<a href=”#ID”>TEXT</a>
link within the same website code
<hr>
horizontal line across the webpage (horizontal rule)
void element
element that doesn’t have a closing tag
<img src=”Image Name”alt=”TEXT”>
code for image
source
src stand for
alternate text
alt stand for
ordered list
displays items in a numbered sequence
unordered list
displays items with bullet points
description list
used for terms and their descriptions - often used for FAQs
list item
<li> stand for