HTML Interview Questions -01
1. What does HTML stand for?
Hyper Text Markup Language
2.Who is making the Web standards?
3.Choose the correct HTML tag for the largest heading
<h1>
4.What is the correct HTML tag for inserting a line break?
<br>
5.What is the preferred way for adding a background color in HTML?
<body style=”background-color:yellow;”>
6.Choose the correct HTML tag to make a text bold
<b>
7.Choose the correct HTML tag to make a text italic
<i>
8.What is the correct HTML for creating a hyperlink?
<a href=”http://www.w3schools.com”>W3Schools</a>
9.How can you create an e-mail link?
<a href=”mailto:xxx@yyy”>
10.How can you open a link in a new tab/browser window?
<a href=”url” target=”_blank”>