diff --git a/html-cheat-sheet/Media/pic_trulli.png b/html-cheat-sheet/Media/pic_trulli.png new file mode 100644 index 0000000..727a89c Binary files /dev/null and b/html-cheat-sheet/Media/pic_trulli.png differ diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Form Elements/datalist.html b/html-cheat-sheet/Pages/Forms/Form Pages/Form Elements/datalist.html index 88b01b8..950e590 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Form Elements/datalist.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Form Elements/datalist.html @@ -15,19 +15,62 @@

datalist

Datalist

- The <datalist> HTML element contains a set of - <option> - elements that represent the - permissible or recommended - options available to choose from within other controls. + The <datalist> HTML element tag specifies a list of pre-defined options for an <input> element. +

+ The <datalist> tag is used to provide an "autocomplete" feature for <input> elements. Users + will see a drop-down list of pre-defined options as they input data. +

+ The <datalist> element's id attribute must be equal to the <input> element's list attribute + (this binds them together).



- +
+

Example: +

+ A datalist with pre-defined options (connected to an <input> element): +

+
+ +
+                    <form action="/action_page.php" method="get">
+                    <label for="browser">Choose your browser from the list:</label>
+                    <input list="browsers" name="browser" id="browser">
+                    <datalist id="browsers">
+                    <option value="Edge">
+                    <option value="Firefox">
+                    <option value="Chrome">
+                    <option value="Opera">
+                    <option value="Safari">
+                    </datalist>
+                    <input type="submit">
+                    </form>
+                
+
+ +

The datalist element

+ +
+ + + + + +
+ +

Note: The datalist tag is not supported in Safari 12.0 (or earlier).

+
+
+


Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Form Elements/form-elements.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Form Elements/fieldset.html b/html-cheat-sheet/Pages/Forms/Form Pages/Form Elements/fieldset.html index 1ca5ff5..ff0631e 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Form Elements/fieldset.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Form Elements/fieldset.html @@ -40,5 +40,5 @@

fildset



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Form Elements/form-elements.html">Return \ No newline at end of file diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Form Elements/input.html b/html-cheat-sheet/Pages/Forms/Form Pages/Form Elements/input.html index a6c921d..817ed59 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Form Elements/input.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Form Elements/input.html @@ -35,7 +35,7 @@

input



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Form Elements/form-elements.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Form Elements/output.html b/html-cheat-sheet/Pages/Forms/Form Pages/Form Elements/output.html index 6a3b3d9..a069498 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Form Elements/output.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Form Elements/output.html @@ -32,7 +32,7 @@

output



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Form Elements/form-elements.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Form Elements/select.html b/html-cheat-sheet/Pages/Forms/Form Pages/Form Elements/select.html index bb7cc16..afb85fb 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Form Elements/select.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Form Elements/select.html @@ -42,7 +42,7 @@

select



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Form Elements/form-elements.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Form Elements/textarea.html b/html-cheat-sheet/Pages/Forms/Form Pages/Form Elements/textarea.html index f906004..c1c9b40 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Form Elements/textarea.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Form Elements/textarea.html @@ -51,7 +51,7 @@

textarea



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Form Elements/form-elements.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/autofocus.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/autofocus.html index e0f4cf1..8f89a44 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/autofocus.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/autofocus.html @@ -45,7 +45,7 @@

autofocus



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/input-attributes.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/disabled.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/disabled.html index df53051..a7a84df 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/disabled.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/disabled.html @@ -33,7 +33,7 @@

disabled



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/input-attributes.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/form.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/form.html index 07901b5..6744248 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/form.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/form.html @@ -57,7 +57,7 @@

The label form attribute



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/input-attributes.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/heightandwidth.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/heightandwidth.html index 31f2d17..cb755c8 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/heightandwidth.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/heightandwidth.html @@ -28,16 +28,12 @@

<height> and <width>

height="200"> - - + a white house

Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/input-attributes.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/input-attributes.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/input-attributes.html index e045531..aa6e068 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/input-attributes.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/input-attributes.html @@ -78,7 +78,7 @@

<input>



Return + href="/html-cheat-sheet/Pages/Forms/forms.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/list.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/list.html index 02650c2..8e431db 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/list.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/list.html @@ -49,7 +49,7 @@

list



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/input-attributes.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/maxlength.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/maxlength.html index 27748d7..bb11efb 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/maxlength.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/maxlength.html @@ -51,7 +51,7 @@

maxlength



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/input-attributes.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/minandmax.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/minandmax.html index fa0f229..01a77d4 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/minandmax.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/minandmax.html @@ -68,7 +68,7 @@

min and max



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/input-attributes.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/multiple.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/multiple.html index 99c3227..386d4ea 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/multiple.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/multiple.html @@ -73,7 +73,7 @@

multiple



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/input-attributes.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/pattern.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/pattern.html index 79ef313..3a89218 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/pattern.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/pattern.html @@ -54,7 +54,7 @@

pattern



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/input-attributes.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/placeholder.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/placeholder.html index 9f157d2..3fbb8d1 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/placeholder.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/placeholder.html @@ -55,7 +55,7 @@

placeholder



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/input-attributes.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/readonly.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/readonly.html index aa6b0a5..5fc0082 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/readonly.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/readonly.html @@ -55,7 +55,7 @@

readonly



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/input-attributes.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/required.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/required.html index 200d17d..8e0dd08 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/required.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/required.html @@ -50,7 +50,7 @@

required



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/input-attributes.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/size.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/size.html index 3f8388d..5eac1c9 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/size.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/size.html @@ -47,7 +47,7 @@

size



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/input-attributes.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/step.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/step.html index 272ddff..a30f412 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/step.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/step.html @@ -55,7 +55,7 @@

step



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/input-attributes.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/type.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/type.html index d52ffd7..11fc625 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/type.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/type.html @@ -56,7 +56,7 @@

type



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/input-attributes.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/value.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/value.html index 73dd050..241f3de 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/value.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/value.html @@ -75,7 +75,7 @@

value



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Attributes/input-attributes.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/buttontypes.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/buttontypes.html index f3f87dc..2de5961 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/buttontypes.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/buttontypes.html @@ -52,7 +52,7 @@

button Types



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/input-types.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/checkbox.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/checkbox.html index 4766c19..3196d3e 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/checkbox.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/checkbox.html @@ -49,7 +49,7 @@

checkbox



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/input-types.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/color.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/color.html index 98ba59b..5d9e18c 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/color.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/color.html @@ -49,7 +49,7 @@

Show a Color Picker



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/input-types.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/date.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/date.html index 2fcd5b1..14f6f17 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/date.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/date.html @@ -49,7 +49,7 @@

Show a Date Control



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/input-types.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/email.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/email.html index 8019f07..694fe28 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/email.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/email.html @@ -64,7 +64,7 @@

Show an email field (allows multiple email addresses). Separate each email a

Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/input-types.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/file.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/file.html index a6cc664..dc44460 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/file.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/file.html @@ -62,7 +62,7 @@

Show a file-select field which allows multiple files:



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/input-types.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/hidden.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/hidden.html index d789df1..20c1eef 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/hidden.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/hidden.html @@ -54,7 +54,7 @@

A Hidden Field (look in source code)



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/input-types.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/image.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/image.html index 5c94ab6..2871dc5 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/image.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/image.html @@ -59,7 +59,7 @@

Display an Image as the Submit button



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/input-types.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/input-types.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/input-types.html index 60aa6a6..b834ffb 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/input-types.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/input-types.html @@ -98,7 +98,7 @@

input types



Return + href="/html-cheat-sheet/Pages/Forms/forms.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/month.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/month.html index ede34d4..4810be2 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/month.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/month.html @@ -53,7 +53,7 @@

Display a Month Input Control



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/input-types.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/number.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/number.html index fb149b5..164ce62 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/number.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/number.html @@ -56,7 +56,7 @@

Display a Number Field



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/input-types.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/password.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/password.html index b89e747..53bb7bd 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/password.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/password.html @@ -52,7 +52,7 @@

Display a Password Field



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/input-types.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/radio.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/radio.html index 4e567aa..1435d06 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/radio.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/radio.html @@ -89,7 +89,7 @@

Display Radio Buttons



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/input-types.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/range.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/range.html index 1055f53..f582809 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/range.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/range.html @@ -55,7 +55,7 @@

Display a Range Field



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/input-types.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/reset.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/reset.html index 461ef52..23d1a69 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/reset.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/reset.html @@ -60,7 +60,7 @@

Display a Reset Button



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/input-types.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/search.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/search.html index e78a7e8..3fc6722 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/search.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/search.html @@ -49,7 +49,7 @@

Display a Search Field



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/input-types.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/submit.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/submit.html index f39759c..5c3c004 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/submit.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/submit.html @@ -52,7 +52,7 @@

Display a Submit Button



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/input-types.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/tel.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/tel.html index b85c813..78c76ac 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/tel.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/tel.html @@ -50,7 +50,7 @@

Display a Telephone Input Field



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/input-types.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/text.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/text.html index 74e007a..d68a92e 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/text.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/text.html @@ -51,7 +51,7 @@

Display Text Input Fields



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/input-types.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/time.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/time.html index 2f829a1..7c10fbc 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/time.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/time.html @@ -54,7 +54,7 @@

Show a Time Input Control



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/input-types.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/url.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/url.html index 7a3c0c1..7e21318 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/url.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/url.html @@ -51,7 +51,7 @@

Display a URL Input Field



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/input-types.html">Return diff --git a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/week.html b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/week.html index 60979d4..f23f0f7 100644 --- a/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/week.html +++ b/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/week.html @@ -50,7 +50,7 @@

Display a Week Input Control



Return + href="/html-cheat-sheet/Pages/Forms/Form Pages/Input Types/input-types.html">Return diff --git a/html-cheat-sheet/Pages/Forms/forms.html b/html-cheat-sheet/Pages/Forms/forms.html index ba4da68..edab4a4 100644 --- a/html-cheat-sheet/Pages/Forms/forms.html +++ b/html-cheat-sheet/Pages/Forms/forms.html @@ -44,7 +44,7 @@

form



- Return + Return \ No newline at end of file diff --git a/html-cheat-sheet/Pages/headings.html b/html-cheat-sheet/Pages/headings.html index 494448b..53edfd9 100644 --- a/html-cheat-sheet/Pages/headings.html +++ b/html-cheat-sheet/Pages/headings.html @@ -1,30 +1,32 @@ - - - - - - - headings - - - Volver -

headings

- -
-

header

-

the label <header> used as top header

-
-
-
Exemple:
this is header
-
- -
-

h1,2,3,4..

-

titles use tag <hx> where x is the number of importance it has, 1 being the largest and 6 being the smallest

-
-
-
Exemple:

This would beh1

This would be h2

This would be h3

This would be h4

This would be h5
This would be h6

-
- - + + + + + + + headings + + + Volver +

headings

+ +
+

header

+ +

the label <header> used as top header

+ +
+
+
Exemple:
this is header
+
+ +
+

h1,2,3,4..

+

titles use tag <hx> where x is the number of importance it has, 1 being the largest and 6 being the smallest

+
+
+
Exemple:

This would beh1

This would be h2

This would be h3

This would be h4

This would be h5
This would be h6

+
+ + \ No newline at end of file