Friday 21 August 2015

HTML Basics Learning with Quiz | learn simple way HTML web creation | HTML QUIZ practise easily learn.

1. What does HTML stand for?
You answered:
Hyper Text Markup Language


2. Who is making the Web standards?
You answered:
The World Wide Web Consortium


3. Choose the correct HTML element for the largest heading:
You answered:
<h1>


4. What is the correct HTML element for inserting a line break?
You answered:
<br>


5. What is the correct HTML for adding a background color?
You answered:
<body style="background-color:yellow;">


6. Choose the correct HTML element to define important text
You answered:
<strong>


7. Choose the correct HTML element to define emphasized text
You answered:
<em>


8. What is the correct HTML for creating a hyperlink?
You answered:
<a href="http://www.w3schools.com">W3Schools</a>


9. Which character is used to indicate an end tag?
You answered:
/


10. How can you open a link in a new tab/browser window?
You answered:
<a href="url" target="_blank">


11. Which of these elements are all <table> elements?
You answered:
<table><tr><td>


12. Inline elements are normally displayed without starting a new line.
You answered:
True

13. How can you make a numbered list?
You answered:
<ol>


14. How can you make a bulleted list?
You answered:
<ul>


15. What is the correct HTML for making a checkbox?
You answered:
<input type="checkbox">


16. What is the correct HTML for making a text input field?
You answered:
<input type="text">


17. What is the correct HTML for making a drop-down list?
You answered:
<select>


18. What is the correct HTML for making a text area?
You answered:
<textarea>

19. What is the correct HTML for inserting an image?
You answered:
<img src="image.gif" alt="MyImage">

20. What is the correct HTML for inserting a background image?
You answered:
<body style="background-image:url(background.gif)">


21. An <iframe> is used to display a web page within a web page.
You answered:
True


22. HTML comments start with <!-- and end with -->
You answered:
True


23. Block elements are normally displayed without starting a new line.
You answered:
False

24. Which HTML element defines the title of a document?
You answered:
<title>


25. Which HTML attribute specifies an alternate text for an image, if the image cannot be displayed?
You answered:
alt (It is mainly used for SEO purpose )