質問編集履歴
1
html文法ミス修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
```HTML
|
2
2
|
<form action="example.php" method="post">
|
3
3
|
<ul>
|
4
|
-
<li><input type="radio" name="fruit" value="林檎"></li>
|
4
|
+
<li><input type="radio" name="fruit" value="林檎">林檎</li>
|
5
|
-
<p><input type="radio" name="abc" value="青リンゴ"></p>
|
5
|
+
<p><input type="radio" name="abc" value="青リンゴ">青リンゴ</p>
|
6
|
-
<p><input type="radio" name="abc" value="王林"></p>
|
6
|
+
<p><input type="radio" name="abc" value="王林">王林</p>
|
7
7
|
|
8
|
-
<li><input type="radio" name="fruit" value="いちご"></li>
|
8
|
+
<li><input type="radio" name="fruit" value="いちご">いちご</li>
|
9
|
-
<p><input type="radio" name="xyz" value="おとめ"></p>
|
9
|
+
<p><input type="radio" name="xyz" value="おとめ">おとめ</p>
|
10
|
-
<p><input type="radio" name="xyz" value="あまおう"></p>
|
10
|
+
<p><input type="radio" name="xyz" value="あまおう">あまおう</p>
|
11
11
|
</ul>
|
12
12
|
|
13
13
|
<button type="submit">
|