W3 HTML Flashcards
What does HTML stand for?
Hyper Text Markup Language
Who is making the Web standards?
The World Wide Web Consortium
Choose the correct HTML tag for the largest heading
<h1>
</h1>
What is the correct HTML tag for inserting a line break?
<br></br>
What is the preferred way for adding a background color in HTML?
body style=”background-color:yellow”
Choose the correct HTML tag to make a text bold
<b></b>
Choose the correct HTML tag to make a text italic
<i></i>
What is the correct HTML for creating a hyperlink?
<a>W3Schools</a>
How can you create an e-mail link?
<a></a>
How can you open a link in a new browser window?
<a></a>
Which of these tags are all tags?
table tr td
Choose the correct HTML to left-align the content inside a tablecell
td align=”left”
How can you make a list that lists the items with numbers?
<ol>
</ol>
How can you make a list that lists the items with bullets?
<ul>
</ul>
What is the correct HTML for making a checkbox?
input type=”checkbox” /