HTML Flashcards by Eilish
What does HTML stand for?
HyperText Markup Language
Who created HTML?
Tim Berners Lee
What is the format for most code in HTML?
<> >
How would you make your text centered?
Hello
How would you start a paragraph?
<p> </p>
What is the basic layout for a webpage?
Add title here
<h1> Add heading here </h1>
<p> Add paragraph here </p>
What is the largest and the smallest heading tags?
<h1> is the biggest.
| <h6> is the smallest.</h6></h1>
True or false: All of the headings after <h5> are smaller than the paragraph.</h5>
True
True or false: The tag <h4> will make your heading the same size as your paragraph.</h4>
True
What type of code would you use to change the style?
CSS
How would you create a horizontal line on your webpage?
<hr></hr>
Please note that you would NOT use an end tag () as that would be incorrect.
How would you include an image?
<img></img>
How would you change the size of an image?
Using Height=… and Width=…..
What is the tag for a hyperlink?
<a>add name of link here (for example: Click here) </a>
Where would you add the style tags?
In the head.