質問編集履歴
1
HTMLコードブロックの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -9,6 +9,52 @@
|
|
9
9
|
|
10
10
|
|
11
11
|
##コード
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
```HTML
|
16
|
+
|
17
|
+
<dl>
|
18
|
+
|
19
|
+
<dt><h2>お名前</h2></dt>
|
20
|
+
|
21
|
+
<dd>
|
22
|
+
|
23
|
+
<div id="name">
|
24
|
+
|
25
|
+
<input type="text" name="name">
|
26
|
+
|
27
|
+
</div>
|
28
|
+
|
29
|
+
</dd>
|
30
|
+
|
31
|
+
<dt><h2>生年月日</h2></dt>
|
32
|
+
|
33
|
+
<dd>
|
34
|
+
|
35
|
+
<div id="birthday">
|
36
|
+
|
37
|
+
<input type="text" name="birthday">
|
38
|
+
|
39
|
+
</div>
|
40
|
+
|
41
|
+
</dd>
|
42
|
+
|
43
|
+
<dt><h2>住所</h2></dt>
|
44
|
+
|
45
|
+
<dd>
|
46
|
+
|
47
|
+
<div id="address">
|
48
|
+
|
49
|
+
<input type="text" name="address">
|
50
|
+
|
51
|
+
</div>
|
52
|
+
|
53
|
+
</dd>
|
54
|
+
|
55
|
+
</dl>
|
56
|
+
|
57
|
+
```
|
12
58
|
|
13
59
|
|
14
60
|
|