11. Use italics (<em>) to emphasize a favorite quote in a paragraph.

Required Input:

A paragraph with italicized text.

Expected Output:

The webpage displays a paragraph with a favorite quote in italics.

Code In Html

<!doctype html> <html></html>

Document

To view the HTML changes, please type the code within the editor

Need help ?

Click on Hint to solve the question.

12. Add a table (<table>) with two columns: "Name" and "Age," and add two rows with sample data.

Required Input:

A table with headers and sample data.

Expected Output:

The webpage displays a table with two columns and sample entries.

Code In Html

<!doctype html> <html></html>

Document

To view the HTML changes, please type the code within the editor

Need help ?

Click on Hint to solve the question.

13. Create a form (<form>) with a text input field for "Name."

Required Input:

A form with a name input field.

Expected Output:

The webpage displays a form with a text input for entering a name.

Code In Html

<!doctype html> <html></html>

Document

To view the HTML changes, please type the code within the editor

Need help ?

Click on Hint to solve the question.

14. Add an email input field to the form for "Email Address."

Required Input:

A form with an email input field.

Expected Output:

The webpage displays a form with an email input field.

Code In Html

<!doctype html> <html></html>

Document

To view the HTML changes, please type the code within the editor

Need help ?

Click on Hint to solve the question.

15. Add a password input field to the form for "Password."

Required Input:

A form with a password input field.

Expected Output:

The webpage displays a form with a password input field.

Code In Html

<!doctype html> <html></html>

Document

To view the HTML changes, please type the code within the editor

Need help ?

Click on Hint to solve the question.

16. Add a submit button (<button>) to the form with the text "Submit."

Required Input:

A form with a submit button.

Expected Output:

The webpage displays a form with a submit button labeled "Submit."

Code In Html

<!doctype html> <html></html>

Document

To view the HTML changes, please type the code within the editor

Need help ?

Click on Hint to solve the question.

17. Create a div container (<div>) to wrap multiple elements within it.

Required Input:

A div container wrapping content.

Expected Output:

The webpage displays multiple elements grouped within a div.

Code In Html

<!doctype html> <html></html>

Document

To view the HTML changes, please type the code within the editor

Need help ?

Click on Hint to solve the question.

18. Add a section inside the div with a subheader (<h3>) titled "Contact Info."

Required Input:

A subheader within a div.

Expected Output:

The webpage displays a subheader titled "Contact Info" inside a div.

Code In Html

<!doctype html> <html></html>

Document

To view the HTML changes, please type the code within the editor

Need help ?

Click on Hint to solve the question.

19. Add a checkbox input for "I agree to the terms and conditions" within the form.

Required Input:

A checkbox input with a label.

Expected Output:

The webpage displays a checkbox with the text "I agree to the terms and conditions."

Code In Html

<!doctype html> <html></html>

Document

To view the HTML changes, please type the code within the editor

Need help ?

Click on Hint to solve the question.

20. Create a radio button group for "Preferred Contact Method" with options "Phone" and "Email."

Required Input:

Radio buttons with labels.

Expected Output:

The webpage displays two radio buttons for selecting a preferred contact method.

Code In Html

<!doctype html> <html></html>

Document

To view the HTML changes, please type the code within the editor

Need help ?

Click on Hint to solve the question.

ad vertical

2 of 3