I am confused with the use of 'class ', 'type ', 'method ', and 'action '. (HTML) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

I am confused with the use of 'class ', 'type ', 'method ', and 'action '. (HTML)

Can anybody tell me? If you can, please add some codes for example☆ Thank you

4th Aug 2017, 9:04 AM
이효정
이효정 - avatar
6 Answers
+ 8
The class attribute specifies one or more classnames for an element. The class attribute is mostly used to point to a class in a style sheet. However, it can also be used by a JavaScript (via the HTML DOM(DOM is Document Object Model) to make changes to HTML elements with a specified class. example <html> <head> <style> h1.intro {     color: blue; } p.important {     color: green; } </style> </head> <body> <h1 class="intro">Header 1</h1> <p>A paragraph.</p> <p class="important">Note that this is an important paragraph. :)</p> </body> </html>
4th Aug 2017, 1:19 PM
Art456
Art456 - avatar
+ 10
For button elements, the type attribute specifies the type of button. For input elements, the type attribute specifies the type of <input> element to display. For menu elements, the type attribute specifies the type of menu. For embed, link, object, script, source, and style elements, he type attribute specifies the Internet media type example https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_button_type
4th Aug 2017, 1:21 PM
Art456
Art456 - avatar
+ 10
The <form> tag is used to create an HTML form for user input. The <form> element can contain one or more of the following form elements: <input> <textarea> <button> <select> <option> <optgroup> <fieldset> <label> example https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_form_submit
4th Aug 2017, 1:22 PM
Art456
Art456 - avatar
+ 10
The action attribute specifies where to send the form-data when a form is submitted. Applies to <form> example https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_form_submit
4th Aug 2017, 1:24 PM
Art456
Art456 - avatar
+ 3
@?? Thnx I love to help
10th Aug 2017, 10:56 AM
Art456
Art456 - avatar
+ 1
Thank you very much!! Now I understand them^^
4th Aug 2017, 1:31 PM
이효정
이효정 - avatar