-
Notifications
You must be signed in to change notification settings - Fork 0
/
registor.html
38 lines (36 loc) · 1.57 KB
/
registor.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
<!DOCTYPE html>
<html lang="en">
<head>
<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>Registor</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1 class="top">My registor website</h1><br>
<form>
<p>ชื่อ <input type="text"> นามสกุล <input type="text">
อีเมล <input type="email"> </p>
<p>
วันเกิด <input type="date"> น้ำหนัก <input type="number" min="1" max="500">
ส่วนสูง <input type="number" min="30" max="300"> อัปโหลดรูปภาพ <input type="file">
</p>
<p>
กำหนดรหัสผ่าน <input type="password">
เพศ <input type="radio" name="gen">ชาย
<input type="radio" name="gen">หญิง
</p>
<p>
สีที่ชอบ <input type="color">
ประเทศที่ชอบ <input type="checkbox" name = "thai" value = "thai">ประเทศไทย
<input type="checkbox"name = "ger" value="ger">ประเทศเยอรมัน
<input type="checkbox"name = "frn" value="frn">ประเทศฝรั่งเศษ
</p>
<p>
<input type="submit" value="ตกลง">
<input type="reset" value="ยกเลิก">
</p>
</form>
</body>
</html>