HTML Flashcards
Basics
Which is the language to describe the STRUCTURE of a web page?
HTML (Hyper Text Markup Language
Which is the language to describe the APPEARANCE of a web page?
CSS (Cascading Style Sheets)
Phrase for meaning your page responds to the type of device a person is using and displays appropriately on mobile, desktop, and tablet
Responsive Degisn
What are the building blocks of HTML pages?
Elements
What are HTML elements represented by?
Tags
In HTML how are pieces of content such as “heading”, “paragraph”, and “table” labeled?
With Tags
What element is the root element of an HTML page?
the HTML element
What element contains meta information about the document?
the HEAD element
What element specifies a title for the document?
The TITLE element
What element contains the visible page content?
The BODY element
What element defines a large heading?
,<,h,1><,/,h,1>
What element defines a paragraph?
,<,p,> ,<,/,p>
What is used to define the characteristics of an HTML element and is placed inside the element’s opening tag?
An Attribute
All attributes are made up of what two parts?
A name and a value
How many attributes can an element have?
More than one; Multiple.