HTML Flashcards
What does HTML stand for?
The HyperText Markup Language (HTML) programming language
What does HTML do?
Through HTML, browsers display text or load elements, rendering webpages, which contain hyperlinks and links to other webpages, for users.
Is HTML the building block for front-end development?
Yes
What dose HTML define?
The structure and meaning of web content.
How does HTML assist browsers ?
By displaying text or load elements, and rendering webpages: which contain hyperlinks and links to other webpages, for users.
How can we use imagery to explain HTML?
HTML is the structure of a house, …CSS is the interior and exterior decor, ….and JavaScript is the electricity, water system etc that make the house livable.
What are HTML TAGS?
TAGS: create headings, paragraphs, bolded words, italicized words, and more
What is this an example of <p>
Opening tag
What is this an example of </p>
Closing tag
What are HTML attributes?
attributes are placed in the opening tag and range from style and ids to classes.
What else do HTML Attributes do?
They take values: to convey information about the element and help things do styling and manipulation with JavaScript.
Explain this :
The opening tag contains a class attribute with a value of “text”
what is this ?
It is a basic HTMl page
Explain this: <!Doctype html>
Specifies that we’re using HTML5 in this code.
Explain this: <html></html>
top-level element of every HTML document.