質問編集履歴

2

DOCTYPE宣言の記入ミスを修正しました。

2018/07/31 06:51

投稿

_L9u7c4i0a
_L9u7c4i0a

スコア25

test CHANGED
File without changes
test CHANGED
@@ -62,7 +62,7 @@
62
62
 
63
63
  ```
64
64
 
65
- <!DECTYPE html>
65
+ <!DOCTYPE html>
66
66
 
67
67
  <html>
68
68
 

1

HTMLがありませんでしたので追加しました。

2018/07/31 06:51

投稿

_L9u7c4i0a
_L9u7c4i0a

スコア25

test CHANGED
File without changes
test CHANGED
@@ -57,3 +57,41 @@
57
57
 
58
58
 
59
59
  …htmlをサーバーに上げると改善したりしますか?
60
+
61
+
62
+
63
+ ```
64
+
65
+ <!DECTYPE html>
66
+
67
+ <html>
68
+
69
+ <head>
70
+
71
+ <meta charset="UTF-8">
72
+
73
+ </head>
74
+
75
+ <body>
76
+
77
+ <input type="radio" name="radio1" checked >ボタン1
78
+
79
+ <input type="radio" name="radio1" >ボタン2
80
+
81
+ <input type="radio" name="radio1" >ボタン3
82
+
83
+ <br>
84
+
85
+ <input type="radio" name="radio2" checked >ボタン1
86
+
87
+ <input type="radio" name="radio2" >ボタン2
88
+
89
+ <input type="radio" name="radio2" >ボタン3
90
+
91
+ </body>
92
+
93
+ </html>
94
+
95
+
96
+
97
+ ```