質問編集履歴

2

コード部分追記

2017/07/10 01:09

投稿

shi6na
shi6na

スコア14

test CHANGED
File without changes
test CHANGED
@@ -18,11 +18,59 @@
18
18
 
19
19
  ```ここに言語を入力
20
20
 
21
-
21
+ <!DOCTYPE html>
22
+
23
+ <html lang="ja">
24
+
25
+ <head>
26
+
27
+ <meta charset="utf-8">
28
+
29
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
30
+
31
+ <meta name="viewport" content="width=device-width, initial-scale=1">
32
+
33
+ <!-- BootstrapのCSS読み込み -->
34
+
35
+ <link href="css/bootstrap.min.css" rel="stylesheet">
36
+
37
+ <link href="(略)" rel="stylesheet">
38
+
39
+ <!-- jQuery読み込み -->
40
+
41
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
42
+
43
+ <!-- BootstrapのJS読み込み -->
44
+
45
+ <script src="js/bootstrap.min.js"></script>
46
+
47
+ <title></title>
48
+
49
+ </head>
50
+
51
+ <body>
52
+
53
+ <center>
54
+
55
+ <ul id="menu">
56
+
57
+ <li><a href="#">トップ</a></li>
58
+
59
+ <li><a href="#">登録</a></li>
60
+
61
+ <li><a href="#">検索</a></li>
62
+
63
+ <li><a href="#">一覧</a></li>
64
+
65
+ </ul>
22
66
 
23
67
  <form method="post" action="" class="form-horizontal">
24
68
 
25
-
69
+ <br>
70
+
71
+ <br>
72
+
73
+ <br>
26
74
 
27
75
  <div class="form-group">
28
76
 
@@ -30,20 +78,198 @@
30
78
 
31
79
  <div class="col-sm-4">
32
80
 
33
- <input type="number" name="id" class="form-control" required="required">
81
+ <input type="text" name="id" class="form-control" required="required">
34
-
82
+
35
- </div>
83
+ </div>
36
-
84
+
37
- </div>
85
+ </div>
86
+
87
+
88
+
89
+ <div class="form-group">
90
+
91
+ <label for="name" class="control-label col-sm-4">なまえ:</label>
92
+
93
+ <div class="col-sm-4">
94
+
95
+ <input type="text" name="name" required="required" class="form-control">
96
+
97
+ </div>
98
+
99
+ <div class="col-sm-1">
100
+
101
+ <select name="sex" class="form-control">
102
+
103
+ <option value="♂">♂</option>
104
+
105
+ <option value="♀">♀</option>
106
+
107
+ <option value="なし">なし</option>
108
+
109
+ </select>
110
+
111
+ </div>
112
+
113
+ </div>
114
+
115
+
116
+
117
+ <div class="form-group">
118
+
119
+ <label for="name" class="control-label col-sm-4">とくせい:</label>
120
+
121
+ <div class="col-sm-4">
122
+
123
+ <input type="text" class="form-control" name="tokusei" required="required">
124
+
125
+ </div>
126
+
127
+ </div>
128
+
129
+
130
+
131
+ <div class="form-group">
132
+
133
+ <label for="name" class="control-label col-sm-4">タイプ:</label>
134
+
135
+ <div class="col-sm-2">
136
+
137
+
138
+
139
+ <table>
140
+
141
+ <tr>
142
+
143
+ <td>
144
+
145
+ <select class="form-control" name="type1" required>
146
+
147
+ <option value="">--</option>
148
+
149
+ </select>
150
+
151
+ </td>
152
+
153
+ <td>
154
+
155
+ <select class="form-control" name="type2">
156
+
157
+ <option value="">--</option>
158
+
159
+ </select>
160
+
161
+ </td>
162
+
163
+ </tr>
164
+
165
+ </table>
166
+
167
+ </div>
168
+
169
+ </div>
170
+
171
+ <h3>種族値</h3>
172
+
173
+ <input type="text" size="5" placeholder="HP"name="sHP_d">
174
+
175
+ <input type="text" size="5" placeholder="攻撃"name="sAtt_d">
176
+
177
+ <input type="text" size="5" placeholder="防御"name="sDef_d">
178
+
179
+ <input type="text" size="5" placeholder="特攻"name="sSatt_d">
180
+
181
+ <input type="text" size="5" placeholder="特防"name="sSdef_d">
182
+
183
+ <input type="text" size="5" placeholder="素早"name="sQui_d">
184
+
185
+ <br>
186
+
187
+
188
+
189
+ <h3>個体値</h3>
190
+
191
+ <input type="text" size="5" placeholder="HP"name="kHP_d">
192
+
193
+ <input type="text" size="5" placeholder="攻撃"name="kAtt_d">
194
+
195
+ <input type="text" size="5" placeholder="防御"name="kDef_d">
196
+
197
+ <input type="text" size="5" placeholder="特攻"name="kSatt_d">
198
+
199
+ <input type="text" size="5" placeholder="特防"name="kSdef_d">
200
+
201
+ <input type="text" size="5" placeholder="素早"name="kQui_d">
202
+
203
+ <br>
204
+
205
+ <h3>努力値</h3>
206
+
207
+ <input type="text" size="5" placeholder="HP"name="eHP_d">
208
+
209
+ <input type="text" size="5" placeholder="攻撃"name="eAtt_d">
210
+
211
+ <input type="text" size="5" placeholder="防御"name="eDef_d">
212
+
213
+ <input type="text" size="5" placeholder="特攻"name="eSatt_d">
214
+
215
+ <input type="text" size="5" placeholder="特防"name="eSdef_d">
216
+
217
+ <input type="text" size="5" placeholder="素早"name="eQui_d">
218
+
219
+ <br>
220
+
221
+ <div class="form-group">
222
+
223
+ <h3>わざ</h3>
224
+
225
+ <ul class="list-inline">
226
+
227
+ <li><input type="text" name="skill1" class="form-control"></li>
228
+
229
+ <li><input type="text" name="skill2" class="form-control"></li>
230
+
231
+ <li><input type="text" name="skill3" class="form-control"></li>
232
+
233
+ <li><input type="text" name="skill4" class="form-control"></li>
234
+
235
+ </div>
236
+
237
+
238
+
239
+ <div class="form-group">
240
+
241
+ <label for="name" class="control-label col-sm-4">メモ:</label>
242
+
243
+ <div class="col-sm-4">
244
+
245
+ <textarea name="memo" class="form-control" cols="3" rows="3"></textarea>
246
+
247
+ </div>
248
+
249
+ </div>
250
+
251
+
252
+
253
+ <br>
38
254
 
39
255
  <input type="reset" class="button" value="リセット">
40
256
 
41
257
  <input type="submit" class="button" value="送信">
42
258
 
43
-
259
+ </center>
44
260
 
45
261
  </form>
46
262
 
263
+
264
+
265
+ </body>
266
+
267
+ </html>
268
+
269
+
270
+
271
+
272
+
47
273
  ```
48
274
 
49
275
 

1

誤字を修正しました

2017/07/10 01:09

投稿

shi6na
shi6na

スコア14

test CHANGED
File without changes
test CHANGED
File without changes