HTML Flashcards
Basics (36 cards)
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.
Can an element be nested within another element?
Yes; True
Write code for an href attribute specifying the link’s destination with opening and closing tags.
Possible Answer: Visit W3Schools
,<,,a,, href,=,”https://www.w3schools.com,,”,,>,,,,,Visit W3Schools,<,/,a,>

Headings
Are attributes always specified in the 1) Start Tag or 2) Ending Tab?
1) Start Tag
Write Code for an H1 heading “Hello World” with a background color of blue.
INLINE CODE that is
.<.h.1 style=”background-color:Blue;”>Hello World<./.h.1.>
Hello World
What is an example of a common self closing tab?
Images tag.
As opposed to ID’s what is not unique but instead group like content?
Classes
Write Code to designate an id of “post_1” within the div class of “widget”

What element contains the metadata about the HTML document?
The element



