HTML Practice Questions
Topics Covered:
HTML Basics, Semantic Tags, Attributes, Forms, Media, and more
30 Questions
Practice Questions
1. Which tag is used to create a hyperlink in HTML?
2. What is the purpose of the
<!DOCTYPE html>
declaration in an HTML document?
3. Which tag is used to display an image in HTML?
4. Which attribute is used to provide alternative text for an image?
5. Which section of an HTML document typically contains metadata, links to stylesheets, and scripts?
6. Which tag is used to create an ordered (numbered) list in HTML?
7. Which tag is used to create a table row in HTML?
8. Which tag is used to define a table header cell in HTML?
9. Which tag is used to insert a line break in HTML?
10. Which attribute specifies the language of an HTML document?
11. Which tag is used to create a form in HTML?
12. Which tag is used to define a table in HTML?
13. Which tag is used to define a paragraph in HTML?
14. How do you add an internal CSS style in an HTML document?
<head> <style> /* CSS styles here */ </style> </head>
15. Which attribute is used to define inline styles directly on an HTML element?
16. Which element is used to define the main content of an HTML document?
17. Which element defines navigation links in HTML5?
18. How do you create a dropdown list in an HTML form?
19. Which element is used to embed a video in an HTML document?
20. Which element is used to embed audio in an HTML document?
21. How do you create a hyperlink that opens in a new tab?
22. Which attribute in an
<a>
tag specifies the URL of the linked resource?
23. What is the purpose of the
<em>
tag in HTML?
24. Which tag is used to create a list item in HTML?
25. What is the purpose of the
<meta>
tag in HTML?
26. Which tag is used to define a header section for a document or section in HTML5?
27. Which tag is used to create a footer for a document or section in HTML5?
28. Which tag is used to define an unordered (bulleted) list in HTML?
29. Which tag is used to embed a video file in an HTML document?
30. Which tag is used to define a section of content in HTML, often with a heading?