The document provides a complete HTML program for a registration form that includes various input fields such as text, password, number, date, checkboxes, radio buttons, and a dropdown list. It uses a table layout for better organization and includes submit and reset buttons. The form is styled with CSS for improved visual presentation.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
21 views5 pages
2c. Registration Form
The document provides a complete HTML program for a registration form that includes various input fields such as text, password, number, date, checkboxes, radio buttons, and a dropdown list. It uses a table layout for better organization and includes submit and reset buttons. The form is styled with CSS for improved visual presentation.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 5
2c.
Write a HTML program, to explain the working of forms by
designing Registration form. (Note: Include text field, password field, number field, date of birth field, checkboxes, radio buttons, list boxes using <select>&<option> tags, <text area> and two buttons ie: submit and reset. Use tables to provide a better view). Aim: To create HTML program to the working of forms by designing Registration form. Source Code: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial- scale=1.0"> <title>Registration Form</title> <style> table { width: 50%; margin: 20px auto; border-collapse: collapse; } th, td { padding: 10px; border: 1px solid #c53737; text-align: left; } th { background-color: #d1a5a5; } </style> </head> <body>