Posts

Showing posts from October, 2021

HTML FORMS

Image
  HTML forms are set of different form elements that allow to interact with the user by your HTML web page and collect the data and information from user. HTML Form fields HTML supports certain fields to collect different information from user. These fields are as following: 1.      Textbox :  It is used to user allow to enter a single line text field in HTML forms. Textfield is mostly used to collect Names or any single value in forms. 2.      TextArea:  It is used to collect multi-line text entries in HTML forms. This field is used to accept the address field in a form. 3.      Password:  It is similar to the textbox field but the characters are displayed in a special symbolic form when the user enters them. As its name, it is used to collect a password from the user. 4.      Radio Buttons:  These fields are used to accept a single value from given multiple choices or o...

Practical file questions (15 Marks)

 Practical file questions (15 Marks) CLASS – X From HTML part 1 1. Write HTML codes for demonstration of Body tag and its attributes. (Listing 6) 2. Write HTML codes for demonstration of heading tag. (listing 7) 3. Write HTML coding for demonstration of paragraph tag and its attributes. (listing 10) 4. Write HTML coding for demonstration of font tag and its attributes. (listing 15 ) 5. Write HTML coding for demonstration of HR tag and its attributes. (listing 16 ) 6. Write HTML coding for demonstration of various Text styles. (listing 18) 7. Write HTML coding for demonstration of Physical styles. (listing 19) 8. Write HTML coding for demonstration of Superscript and subscript. (listing 20 &21) 9. Write HTML coding for demonstration of Character Entities. (listing 22) 10. Write HTML coding for demonstration of Definition list. (listing 28) 11. Write HTML coding for demonstration of Nested list along with attributes of OL and UL tags and its attributes. (listing 29) From HTML par...