Web Development Flashcards
What is the standard markup language for creating web pages?
HTML
What does HTML stand for?
Hyper Text Markup Language
What are the building blocks of HTML pages?
HTML elements
What are HTML elements represented by?
Tags
What do HTML tags do?
Label sections of webpage content
What element is a declaration that defines the document to be HTML5?
<!DOCTYPE html>
What is the root element of an HTML page?
<html>
</html>
What element contains meta information about the document?
<head>
</head>
What element contains the visible page content?
<body>
</body>
What element describes a heading with the first size?
‘<h1>’
What element defines a paragraph?
‘<p>’
What tags accompany the <img></img> tag to specify the web address and trivial information of an attached image?
src, alt
What are the two types of lists in HTML?
Ordered, unordered
What tag does each item within a list start with?
<li>
</li>
What tag does an unordered list start with?
<ul>
</ul>