HTML Foudnations Revised Flashcards
What does HTML stand for?
Hypertext Markup Language
What is the purpose of HTML?
To create the structure of a web page
What is the basic unit of an HTML document?
Element
What tag is used to define the title of an HTML document?
<title>
</title>
What tag is used to create a hyperlink in HTML?
<a></a>
What attribute is used to specify an alternate text for an image in HTML?
alt
What tag is used to define a list item in HTML?
<li>
</li>
Which tag is used to define the header of a table in HTML?
<th>
</th>
What is the correct HTML element for the largest heading?
<h1>
</h1>
What is the correct HTML for adding a background color to a webpage?
<body>
</body>
What attribute is used to group together the list items in an ordered or unordered list in HTML?
type
What is the correct HTML for inserting a line break?
<br></br>
Which tag is used to define a section in an HTML document?
<section>
</section>
What is the correct HTML for creating a hyperlink that opens in a new tab?
<a>link text</a>
Which tag is used to define the footer of a document or a section in HTML?
<footer>
</footer>