-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathperson.HTML
51 lines (38 loc) · 843 Bytes
/
person.HTML
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="person.css">
</head>
<body>
<div class="form-box">
<h1>PERSON</h1>
<h5>ENTRY</h5>
<div class="textbox">
<i class="fas fa-user"></i>
NAME<input type="text" placeholder="">
</div>
<div class="textbox">
PURPOSE<input type="text" placeholder="">
</div>
<div class="textbox">
PHONE<input type="text" placeholder="">
</div>
<div class="textbox">
DATE:
<input type="date">
</div>
<br><br>
GENDER
<br>
<input type="radio" name="gender" value="male">male
<input type="radio" name="gender" value="female">female
<div class="textbox">
ADDRESS
<textarea rows="4" col="15"></textarea>
</div>
<br><br>
<input type="button" class="btn" value="submit">
</body>
</html>