Posts

HTML FORM (10 NOVEMBER 2021 ONLINE CLASS NOTES..........)

 10 NOVEMBER 2021 ONLINE CLASS NOTES.......... Form provides easy way to collect required information from webpage visitors. HTML FORMS- 1.            <form> tag 2.           INPUT ELEMENTS Text box, checkbox, radio button, list box(menu), combo box 3.            Submit button   INPUT CONTROL- ·                 TEXT INPUT CONTROL (Text box, password)   <INPUT> ·                 Data input control- radio button, checkbox , list box(menu ), <SELECT> Combobox   ·                 Button controls (submit button) <INPUT>       <HTML...

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...

REVISION CLASS IX AND CLASS X TERM 1

CLASS IX  AND X TERM 1 REVISION CLASS IX  https://forms.gle/mrQRZdeNe3mpBTC REVISION CLASS X https://forms.gle/3jYymUpXt2XUoGwr6

YOUTUBE LINKS FOR COMPUTER APPLICATIONS FOR BETTER UNDERSTANDING THE TOPICS

Image
    1. DIGITAL PROPERTY RIGHTS https://youtu.be/lxwHgvp39GM 2. INTELLECTUAL PROPERTY RIGHTS         https://youtu.be/mq4CMHk9Iko 3.   PLAGIARISM   https://youtu.be/QJd5l20yuXA 4.   ONLINE FRAUDS https://youtu.be/xMr5c5_Kvao 5.   HTML- BOLD, ITALICS, UNDERLINE https://youtu.be/dCX3PR37XL0 6. HTML- TAGS https://youtu.be/dCX3PR37XL0 7. MS WORD- MARGIN , INDENTS   https://youtu.be/Y7ja8V7zr5k 8. FEATURES OF MS WORD https://youtu.be/1R1GYVL1GPk 9.    THALES THEOREM (B.P.T) https://youtu.be/ipfRRABhNtI 10.      CYBER ETHICS – E COMMERCE https://youtu.be/vTsoWALGyFc

01/09/2021 html

Image
program 1  write a program to display text with line and paragraph breaks. <HTM> <HEAD> <TITLE> Text with Breaks </TITLE> </HEAD> <BODY bgcolor="red"> Hello! Welcome to my personal webpage. I hope you like it. <P> FULL FORMS-     Post Office Protocol (POP)  Transmission Control Protocol (TCP) Internet Protocol (IP) Simple mail transport Protocol (SMTP) File Transfer Protocol (FTP) Hyper Text Transfer Protocol (HTTP) Hyper Text Transfer Protocol Secure (HTTPS) </P> </BODY> </HTML> program 2 write a program to display paragraph in various alignments. <HTM> <HEAD> <TITLE> Text with Breaks </TITLE> </HEAD> <BODY> <font size="20"> <P ALIGN=LEFT> MERA  </P> <P ALIGN=CENTER> BHARAT </P> <P ALIGN=RIGHT> MAHAN </P> </font> </BODY> </HTML>