1. Choose the correct HTML tag to make a text italic
<italic>
<i> Correct Ans-b
2. What is the correct HTML for creating a hyperlink?
<a name="http://www.w3schools.com">W3Schools.com</a>
<a href="http://www.w3schools.com">W3Schools</a>
<a>http://www.w3schools.com</a>
<a url="http://www.w3schools.com">W3Schools.com</a> Correct Ans-b
3. How can you create an e-mail link?
<a href="mailto:xxx@yyy">
<mail>xxx@yyy</mail>
<mail href="xxx@yyy">
<a href="xxx@yyy"> Correct Ans-a
4. How can you open a link in a new tab/browser window?
<a href="url" new>
<a href="url" target="new">
<a href="url" target="_blank"> Correct Ans-c
, 5. Which of these tags are all <table> tags?
<thead><body><tr>
<table><head><tfoot>
<table><tr><td>
<table><tr><tt> Correct Ans-c
6. In HTML, inline elements are normally displayed without starting a new line.
True
False Correct Ans-True
7. How can you make a numbered list?
<dl>
<ul>
<ol>
<list> Correct Ans-c
8. How can you make a bulleted list?
<ol>
<dl>
<ul>
<list> Correct Ans-c