Shared Flashcard Set

Details

HTML5 intro
http://www.w3schools.com/html/html_intro.asp
21
Other
Not Applicable
02/24/2015

Additional Other Flashcards

 


 

Cards

Term

HTML 

Definition

markup language for describing web documents (web pages)

HTML stands for Hyper Text Markup Language

Term
markup language

Definition
 a set of markup tags
Term
HTML tags

Definition
used to describe HTML documents 
Term
HTML tag 
Definition
describes different document content
Term
DOCTYPE 

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
<head> and </head>

Definition
 provides information about the document
Term
<title> and </title> 
Definition
provides a title for the document
Term
 <body> and </body> 

Definition
describes the visible page content
Term

<h1> and </h1> 

 

Definition
describes a heading
Term
<p> and </p> 
Definition
describes a paragraph
Term

keywords 

 


Definition

HTML tags (tag names) surrounded by angle brackets


<tagname>content</tagname>

Term

pairs 


Definition

the format ofHTML tags

<p> and </p>


Term
start tag
Definition

the first tag in a pair

 

<tag>

Term

end tag


Definition

second tag in a pair

 

</end tag>

Term
slash 
Definition
what differentiates the end tag from the start tag
Term
opening tag
Definition
start tag  
Term
closing tag
Definition
end tag  
Term
web browser 
Definition
reads HTML documents and display them
Term

HTML Page Structure

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
<!DOCTYPE> 
Definition
helps the browser to display a web page correctly
Supporting users have an ad free experience!