HTML: Difference between revisions

From Computer Science Wiki
Line 11: Line 11:
Content gratefully used with permission :  <ref>http://cs50.tv/2015/fall/#license,psets</ref>
Content gratefully used with permission :  <ref>http://cs50.tv/2015/fall/#license,psets</ref>


== Input types ==
== List of input types ==


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


How an <input> works varies considerably depending on the value of its type attribute, hence the different types are covered in their own separate reference pages. If this attributes is not specified, the default type adopted type is text. <ref>https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input</ref>
How an <input> works varies considerably depending on the value of its type attribute, hence the different types are covered in their own separate reference pages. If this attributes is not specified, the default type adopted type is text. <ref>https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input</ref>
I will not re-write excellent documentation for each inout type. [https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input Click here the Mozilla documentation page with links to each input type]


* [[html input types - password | password]]
* [[html input types - password | password]]
Line 38: Line 40:
* [[html input types - datetime-local | datetime-local]]
* [[html input types - datetime-local | datetime-local]]
* [[html input types - color | color]]
* [[html input types - color | color]]
* [[html input types - hidden | hidden]]


== Helpful resources ==
== Helpful resources ==

Revision as of 20:11, 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[edit]

Content gratefully used with permission : [3]

List of input types[edit]

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

How an <input> works varies considerably depending on the value of its type attribute, hence the different types are covered in their own separate reference pages. If this attributes is not specified, the default type adopted type is text. [4]

I will not re-write excellent documentation for each inout type. Click here the Mozilla documentation page with links to each input type

Helpful resources[edit]

See also[edit]

References[edit]