HTML: Difference between revisions

From Computer Science Wiki
Line 12: Line 12:


== Input types ==
== Input types ==
The HTML <input> element is used to create interactive controls for web-based forms in order to accept data from the user.<ref>https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input</ref>
* [[html input types - password | password]]
* [[html input types - password | password]]
* [[html input types - submit | submit]]
* [[html input types - submit | submit]]
Line 17: Line 20:
* [[html input types - text | text]]
* [[html input types - text | text]]
* [[html input types - textarea | textarea]]
* [[html input types - textarea | textarea]]
* [[html input types - range | range]]
* [[html input types - radio | radio]]
* [[html input types - radio | radio]]
* [[html input types - checkbox | checkbox]]
* [[html input types - checkbox | checkbox]]

Revision as of 21:04, 11 July 2017

HTML [1]

HyperText Markup Language, commonly referred to as HTML, is the standard markup language used to create web pages. Along with CSS, and JavaScript, HTML is a cornerstone technology used to create web pages, as well as to create user interfaces for mobile and web applications. Web browsers can read HTML files and render them into visible or audible web pages. HTML describes the structure of a website semantically along with cues for presentation, making it a markup language, rather than a programming language.[2]

Introduction

Content gratefully used with permission : [3]

Input types

The HTML <input> element is used to create interactive controls for web-based forms in order to accept data from the user.[4]

Helpful resources

See also

References