HTML 1 Flashcards
(40 cards)
What does HTML stand for?
Hyper text markup language
What is the purpose of HTML?
Standard markup language for creating webpages
What does HTML describe?
The structure of a webpage
What are the components of HTML?
Consists of a series of elements
What do HTML elements do?
Tell the browser how to display the content
What is the document type declaration in HTML?
<!DOCTYPE html>
What tags define the beginning and end of an HTML document?
<html> and </html>
What tags encompass the visible part of an HTML document?
<body> and </body>
What are headings defined with?
<h1> to <h6> tags
</h6></h1>
Which heading tag is the most important?
H1
Which heading tag is the least important?
H6
What tag is used to define a paragraph in HTML?
<p> tag
</p>
What tag defines a hyperlink in HTML?
<a> tag</a>
What attribute specifies a link’s destination?
href attribute
How is an image defined in HTML?
<img></img> tag
What attributes are provided for images in HTML?
Source file, alternative text, width and height
What is an HTML element?
Everything from the start tag to the end tag
What are nested HTML elements?
Elements that contain other elements
What defines an empty HTML element?
HTML elements with no content
What is an example of an empty HTML element?
The br tag
What is the case sensitivity rule for HTML tags?
Tags are not case sensitive
What do all HTML elements have?
Attributes
What do attributes provide in HTML?
Additional information about elements
What is the purpose of the href attribute?
Specifies the URL of the page that the link goes to