HTML Flashcards
What does H1 mean?
It is the main heading
How would you write headings?
H1,H2,H3
How do you add a paragraph into HTML?
<p></p>
What does HTML stand for?
Hypertext Markup Language
How would you start a HTML page?
<!DOCTYPE HTML>
What is the purpose of HTML?
To structure a webpage
What are attributes?
Defined words used in a HTML tag to modify the tag properties.
How would you add an image into HTML?
<img></img>
How do you add a video into HTML?
<video></video>
What is the <body> element
contains the visible page content
what is href?
An attribute often used with <a>; links to another URL.</a>
What is the <html> element?
The root element of a HTML page
What is an Id?
It is a key used to identify a single element or location on a webpage
What is a style attribute?
The style attribute is used to specify the styling of an element, like colour, font and size
What element would you use for hyperlinks
<a></a>