Derived Channel
1.54K subscribers
252 photos
4 videos
374 files
68 links
القناة الأساسية
@stepbystep001

ومـما زادني شـرفـاً وتـيــهـاً
وكدت بأخمصي أطأ الـثريا
دخولي تحت قولك يا عبادي
وأن صـيَّرت أحمد لي نـبيـا
Download Telegram
specifies the width (in characters) of an input field
Anonymous Quiz
2%
min
5%
max
88%
size
5%
step
specifies the legal number intervals for an input field
Anonymous Quiz
2%
min
10%
max
10%
size
78%
step
specifies the default value for an input field
Anonymous Quiz
2%
min
2%
max
1%
size
96%
value
let a user select ONE of a limited number of choices
Anonymous Quiz
83%
radio button
17%
check box
let a user select ZERO or MORE options of a limited number of choices
Anonymous Quiz
5%
radio button
95%
check box
… element defines a drop-down list
Anonymous Quiz
20%
<option>
80%
<select>
… elements defines an option that can be selected
Anonymous Quiz
92%
<option>
8%
<select>
By default, the first item in the drop-down list is selected
Anonymous Quiz
89%
T
11%
F
To define a pre-selected option, add the …. attribute to the option
Anonymous Quiz
15%
select
73%
selected
12%
option
element specifies a list of pre-defined options for an <input> element
Anonymous Quiz
21%
option
11%
select
68%
datalist
Users will see a drop-down list of the pre-defined options as they input data
Anonymous Quiz
23%
option
21%
select
55%
datalist
The list attribute of the <input> element, must refer to the id attribute of the <datalist> element
Anonymous Quiz
92%
T
8%
F
element defines a clickable button
Anonymous Quiz
4%
<span>
1%
<p>
92%
<button>
2%
<h1>
defines a button for submitting the form data to a form-handler
Anonymous Quiz
3%
<input type=”text”>
2%
<input type=”password”>
95%
<input type=”submit”>
0%
<input type=”number”>
The form-handler is typically a file on the server with a script for processing input data
Anonymous Quiz
93%
T
7%
F
The form-handler is typically a file on the server with a script for processing input data
Anonymous Quiz
95%
T
5%
F
defines a reset button that will reset all form values to their default values
Anonymous Quiz
2%
<input type=”text”>
88%
<input type=”reset”>
2%
<input type=”submit”>
9%
<input type=”clear”>
If you change the input values and then click the "Reset" button, the form-data will not be reset to the default values
Anonymous Quiz
26%
T
74%
F
element defines a multi-line input field
Anonymous Quiz
5%
<input type=”text”>
95%
<textarea></textarea>
element defines a single-line input field
Anonymous Quiz
97%
<input type=”text”>
3%
<textarea></textarea>
attribute specifies the visible number of lines in a text area
Anonymous Quiz
17%
cols
83%
rows