1. Home
  2. /
  3. Blog
  4. /
  5. دورة تطوير المواقع الإلكترونية 5
Web design and development

دورة تطوير المواقع الإلكترونية 5

September 27, 2022 1 min read 132
دورة تطوير المواقع الإلكترونية 5

  <!--
html input type attributes


autofocus
value
placeholder
readonly
size
width
height
multiple
required
min
max
max-length


-->
	<form action="" method="" >
		<label>Full Name : </label>
		<input type="text" maxlength="5" autofocus placeholder="Full Name " size="30" >
		<input type="password" required >
		<input type="email"name="" value="@gmail.com" readonly >
		<br>
		<select>
			<option>red</option>
			<option>black</option>
			<option>white</option>
		</select>
<br>
		<input type="radio" name="radiob">
		<input type="radio" name="radiob">
		<input type="radio" name="radiob">
<br>
		<input type="checkbox" name="">
		<input type="checkbox" name="">
		<input type="checkbox" name="">
		<input type="checkbox" name="">
<br>
		<input type="color" name="">
		<br>
		<input type="date" name="">
		<br>
		<input type="datetime-local" name="">
		<br>
		<input type="month" name="">
		<input type="week" name="">
		<input type="time" name="">
		<br>
		<input type="file" multiple name="">
		<br>
		<input type="range" min="0" max="100" value="20"  name="">
		<br>
		<input type="tel" name="">
		<br>
		<input type="number" name="">
		<br>
		<textarea  ></textarea>

		
		<br>
		<button>click here</button>
		<input type="button" value="add" name="">
		<input type="reset" name="">
		<input type="submit" >

	</form>
Share:
Read next

Related articles