Term
|
Definition
a markup language for describing web documents (web pages)
HTML stands for Hyper Text Markup Language |
|
|
Term
|
Definition
|
|
Term
|
Definition
used to describe HTML documents |
|
|
Term
|
Definition
describes different document content |
|
|
Term
|
Definition
a declaration defines the document type to be HTML
<!DOCTYPE html> |
|
|
Term
The text between <html> and </html> |
|
Definition
describes an HTML document |
|
|
Term
|
Definition
provides information about the document |
|
|
Term
|
Definition
provides a title for the document |
|
|
Term
|
Definition
describes the visible page content |
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
HTML tags (tag names) surrounded by angle brackets
<tagname>content</tagname> |
|
|
Term
|
Definition
the format ofHTML tags
<p> and </p>
|
|
|
Term
|
Definition
the first tag in a pair
<tag> |
|
|
Term
|
Definition
second tag in a pair
</end tag> |
|
|
Term
|
Definition
what differentiates the end tag from the start tag |
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
reads HTML documents and display them |
|
|
Term
|
Definition
<html>
<head>
<title>Page title</title>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
</body>
</html> |
|
|
Term
|
Definition
helps the browser to display a web page correctly |
|
|