-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (55 loc) · 1.66 KB
/
index.html
File metadata and controls
59 lines (55 loc) · 1.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS</title>
<link rel = "stylesheet" href = "style.css">
</head>
<body>
<h1>REGISTRATION FORM</h1>
<form action="/action.php" ></form>
<div id="box">
<h3>
Enter your credentials!
</h3>
<h5>Username</h5>
<input type = "text" placeholder = "Enter your username here">
<br>
<br>
<h5>Mobile Number</h5>
<input type = "number" placeholder = "Enter your mobile number here">
<br>
<br>
<h5>Password</h5>
<input type = "password" placeholder = "Create your password here">
<!-- <br> -->
<br>
<br>
<h5>Location</h5>
<select name="city" id="city">
<option value="Delhi"> Delhi </option>
<option value="Mumbai"> Mumbai </option>
<option value="Banglore"> Banglore </option>
<option value="Hyderabad"> Hyderabad </option>
</select>
<br>
<br>
<h5>Gender</h5>
<label for "101">
<input type = "radio" value = "Male" id = "101" name = "Gender" >Male
</label>
<label for "103">
<input type = "radio" value = "Female" id = "102" name = "Gender" >Female
</label>
<br>
<br>
<h5>Description*</h5>
<textarea name="Description" id="Description" placeholder="Please add description">
</textarea>
<br>
<input type = "button" value ="submit">
</div>
</id>
</body>
</html>