Elements Flashcards
(11 cards)
What are HTML elements with no content called?
empty elements
Which element defines a line break?
<br></br>
What is an HTML element?
everything from start tag to end tag
What declaration represents the document type?
<!DOCTYPE html>
Which element is the root element of an HTML page?
<html>...</html>
Which element contains meta information about the HTML page?
<head>...</head>
Which element specifies a title for the HTML page (the browser’s title bar)?
<title>...</title>
Which element defines the document’s body, and is a container for all the visible contents?
<body>...</body>
Which element defines a large heading (the largest and most important)?
<h1>...</h1>
Which element defines a paragraph?
<p>...</p>
Which element is the most common way of creating sections for a page?
<div>...</div>