Input types

This snippet code contains most popular types of introducing data in forms. It's important to use it for keeping uniform scheme of data.
	<form>
		<!-- Most popular simple text -->
		Text<br>
		<input type="text"><br>
		<!-- E-mail address scheme: address@domain.co -->
		E-mail<br>
		<input type="email"><br>
		<!-- Dotted symbols for password -->
		Password<br>
		<input type="password"><br>
		<!-- Number, there is option to rise or decrease -->
		Number<br>
		<input type="number"><br>	
		<!-- Phone number scheme -->
		Phone number<br>
		<input type="tel"><br>
		<!-- Color which you can pick from colour palette -->
		Color<br>
		<input type="color"><br><br>
		<!-- Submit button -->
		<input type="submit"><br>
	</form>

Responses

0 Replies