Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
44 lines (42 loc) · 1.38 KB

File metadata and controls

44 lines (42 loc) · 1.38 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Input</title>
</head>
<body>
<center>
<h1>Hello, this is a simple input form example.</h1><br><br>
<label>Name : <input></label><br><br>
<label>Name : <input placeholder="Enter your name"></label><br><br>
<h2>Mobile Num : <input placeholder="Enter your num" type="number"><br><br></h2>
<h3>Password : <input placeholder="Enter your password" type="password"><br><br></h3>
<center>
<button type="submit">Submit</button><br><br>
</center>
Hello Test<br>
</center>
<hr><hr>
Select your gender:
<input type="radio" name="g"> Male
<input type="radio" name="g"> Female
<input type="radio" name="g"> Other <br><br>
<hr><hr>
<h3> Please Select the Languages you know </h3>
<input type="checkbox" name="a"> HTML
<input type="checkbox" name="a"> CSS
<input type="checkbox" name="a"> JavaScript
<input type="checkbox" name="a"> Python
<input type="checkbox" name="a"> C++
<br><br>
<hr>
<select>
<option> -- Select Your City -- </option>
<option value="pune"> PUNE </option>
<option value="mumbai"> MUMBAI </option>
<option value="delhi"> DELHI </option>
</select>
In Case Of Other City : <input type="text" placeholder="Enter your city">
</body>
</html>
Morty Proxy This is a proxified and sanitized view of the page, visit original site.