-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (89 loc) · 2.86 KB
/
index.html
File metadata and controls
97 lines (89 loc) · 2.86 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<style>
body {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
blockquote {
text-align: center;
border: 2px solid;
box-sizing: border-box;
background-color: aquamarine;
}
input[type="text"],
input[type="email"],
input[type="date"] {
padding-top: 5px;
padding-bottom: 5px;
width: 100%;
}
#container {
margin-top: 20%;
padding: 10px;
border: black 2px solid;
box-sizing: border-box;
position: absolute;
float: left;
background-color: aqua;
}
</style>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>inputs
</title>
</head>
<body>
<div id="container">
<label for="name" id="data">Name:</label>
<br>
<input type="text" placeholder="Enter Your Name">
<br>
<label for="age" id="data">Age:</label>
<br>
<input type="text" placeholder="Enter your age">
<div>
<label for="Gender" id="data">Gender:</label>
<input type="radio" name="Gender">
<label for="Gender">Male</label>
<input type="radio" name="Gender">
<label for="Gender">Female</label>
<input type="radio" name="Gender">
<label for="Gender">Others</label>
</div>
<label for="Dob" id="data">Date of Birth</label>
<br><input type="date" name="Dob">
<br>
<label for="email">Email ID:</label>
<br>
<input type="email" name="email" placeholder="Ex:abc@gmail.com">
<br>
<label for="country">Select the country</label>
<select name="country" id="">
<option value="India">India</option>
<option value="USA">USA</option>
<option value="Austarlia">Austarlia</option>
<option value="SriLanka">SriLanka</option>
</select>
<br>
<input type="checkbox" name="check">
<label for="check">I Accept all terms and conditions</label>
<center>
<input type="submit" name="" id="">
</center>
</div>
<blockquote>
<p>dont quit</p>
</blockquote>
<figcaption>-Hemanth</figcaption>
<label for="pets">select your pets</label>
<input list="pets" name="pets" id="pets">
<datalist id="pets">
<option value="dog">
<option value="cat">
<option value="lion">
<option value="tiger">
</datalist>
</body>
</html>