Module 04-01 Introduction to HTML & CSS Flashcards
What provides the basic structure or markup of a document?
HTML
What provides the basic structure or markup of a document?
HTML
What provides the formatting of the document to control presentation and layout?
CSS
What provides behavior to the document?
JavaScript
What does HTML stand for?
Hyper Text Markup Language
What is the first line of every HTML document?
and
What is contained in the ?
Metadata such as the author, description, and links to JavaScript or CSS files that should be applied.
The content of the page is inside what tag?
What do <ul> and </ul><ol> represent?</ol>
Unordered and Ordered Lists
What do <ul> and </ul><ol> represent?</ol>
Unordered and Ordered Lists
What provides the formatting of the document to control presentation and layout?
CSS
What provides behavior to the document?
JavaScript
What does HTML stand for?
Hyper Text Markup Language
What is the first line of every HTML document?
and
What is contained in the ?
Metadata such as the author, description, and links to JavaScript or CSS files that should be applied.
The content of the page is inside what tag?
What is an HTML attribute?
An addition value that configures the element or adjusts its behavior. Either global or single use.
What are the two parts of a style declaration in CSS?
A property and a value
What two attributes does a element have?
action: the URL that processes the form submission & method: the HTTP method to submit the form with (POST or GET)
What are two important attributes of the element?
Name (key) and Type
What is Semantic HTML
HTML that uses meaningful names like instead of <div> to give context and meaning to the code, making it more accessible</div>
Can a page have multiple headers?
Yes
Can a page have multiple footers?
Yes
Can a page have multiple elements?
No
What does CSS stand for?
Cascading Style Sheets
What is the most basic kind of CSS selector?
A type selector (body, h1, p, etc.)
What are the two parts of a style declaration in CSS?
A property and a value