-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0813.html
62 lines (62 loc) · 2.63 KB
/
0813.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
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>0813</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
</head>
<body>
<div class="container">
<form>
<div class="form-group row">
<label for="inputname" class="col-sm-2 col-form-label">姓名</label>
<div class="col-sm-10">
<input type="email" class="form-control" id="inputname" placeholder="name">
</div>
</div>
<div class="form-group row">
<label for="inputsex" class="col-sm-2 col-form-label">性別</label>
<div class="form-group col-sm-10">
<select id="inputsex" class="form-control">
<option selected>Choose</option>
<option>男</option>
<option>女</option>
</select>
</div>
</div>
<div class="form-group row">
<label for="inputcity" class="col-sm-2 col-form-label">地址</label>
<div class="form-group col-sm-10">
<select id="inputcity" class="form-control mb-3">
<option selected>台灣及離島</option>
<option>台灣及離島</option>
<option>國外</option>
</select>
<div class="form-row">
<div class="col">
<select class="form-control">
<option selected>高雄市</option>
<option>高雄市</option>
<option>其他</option>
</select>
</div>
<div class="col">
<select class="form-control">
<option selected>鹽埕區</option>
<option>鹽埕區</option>
<option>其他</option>
</select>
</div>
</div>
</div>
</div>
<div class="form-group row">
<div class="col-sm-10">
<button type="submit" class="btn btn-primary">送出</button>
</div>
</div>
</form>
</div>
</body>
</html>