21. Add a dropdown menu (<select>) with three options: "Red," "Green," and "Blue."
Required Input:
A dropdown with color options.
Expected Output:
The webpage displays a dropdown menu with options for Red, Green, and Blue.
Code In Html
Document
To view the HTML changes, please type the code within the editor
Need help ?
Click on Hint to solve the question.
22. Insert a comment (<!-- This is a comment -->) inside the HTML code.
Required Input:
A comment explaining the code.
Expected Output:
The comment is only visible in the code, not on the webpage.
Code In Html
Document
To view the HTML changes, please type the code within the editor
Need help ?
Click on Hint to solve the question.
23. Create a link that opens in a new tab using target="_blank".
Required Input:
A link with target attribute set to _blank.
Expected Output:
The webpage displays a link that opens a new tab.
Code In Html
Document
To view the HTML changes, please type the code within the editor
Need help ?
Click on Hint to solve the question.
24. Add a background color to the <body> using inline styles.
Required Input:
Inline style to set background color.
Expected Output:
The webpage displays with a colored background.
Code In Html
Document
To view the HTML changes, please type the code within the editor
Need help ?
Click on Hint to solve the question.
25. Use the <span> element to style a part of the text with a different color.
Required Input:
A span with inline style for color.
Expected Output:
The webpage displays part of the text in a different color.
Code In Html
Document
To view the HTML changes, please type the code within the editor
Need help ?
Click on Hint to solve the question.
26. Add a <footer> section with the text "© 2023 My Website."
Required Input:
A footer with copyright text.
Expected Output:
The webpage displays a footer at the bottom with copyright information.
Code In Html
Document
To view the HTML changes, please type the code within the editor
Need help ?
Click on Hint to solve the question.
27. Create an anchor link (<a href="#top">) to scroll back to the top of the page.
Required Input:
An anchor link to jump to the top.
Expected Output:
The webpage displays a link that scrolls to the top of the page when clicked.
Code In Html
Document
To view the HTML changes, please type the code within the editor
Need help ?
Click on Hint to solve the question.
28. Add an <iframe> element to embed a YouTube video.
Required Input:
An iframe with YouTube video URL.
Expected Output:
The webpage displays an embedded YouTube video.
Code In Html
Document
To view the HTML changes, please type the code within the editor
Need help ?
Click on Hint to solve the question.
29. Create a <blockquote> to display a favorite quote with attribution.
Required Input:
A blockquote with citation.
Expected Output:
The webpage displays a blockquote with attribution.
Code In Html
Document
To view the HTML changes, please type the code within the editor
Need help ?
Click on Hint to solve the question.
30. Add a section using <section> and include a nested <article> with a title and paragraph.
Required Input:
A section with a nested article.
Expected Output:
The webpage displays a section with a nested article containing a title and paragraph.
Code In Html
Document
To view the HTML changes, please type the code within the editor
Need help ?
Click on Hint to solve the question.