aboutsummaryrefslogtreecommitdiff
path: root/HTML/inputfields.html
blob: c2263ae979bdd3148b7052d9f8a33a801f733b87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
    <!-- Metadata -->
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <!-- CSS & Atom -->
    <link rel="stylesheet" href="../CSS/default.css">
    <link rel="stylesheet" href="../CSS/inputfield.css">

    <title>Inputfield</title>
</head>
<body>
	<div style="margin: 5px">
		<input type="text" id="username">
	</div>

	<div style="margin: 5px">
		<input type="checkbox">
	</div>

	<div style="margin: 5px">
		<input type="color">
	</div>

	<div style="margin: 5px">
		<input type="date">
	</div>

	<div style="margin: 5px">
		<input type="file">
	</div>

	<div style="margin: 5px">
		<input type="radio">
	</div>

	<div style="margin: 5px">
		<input type="range">
	</div>

	<div style="margin: 5px">
		<textarea id="text-zone" rows="4" cols="50">
			Text zone, text area...
		</textarea>
	</div>

	<div style="margin: 5px">
		<input list="browsers" name="browser" id="browser" type="text">

		<datalist id="browsers">
			<option value="Edge">
			<option value="Firefox">
			<option value="Chrome">
			<option value="Opera">
			<option value="Safari">
		</datalist>
	</div>

	<div style="margin: 5px">
		<input type="submit" value="Submit">
	</div>
</body>
</html>
ArKa projects. All rights to me, and your next child right arm.