質問編集履歴

2

htmlを載せました

2021/03/01 10:24

投稿

Suffenjoying
Suffenjoying

スコア10

test CHANGED
File without changes
test CHANGED
@@ -40,7 +40,7 @@
40
40
 
41
41
  ```ここに言語名を入力
42
42
 
43
- ソースコード
43
+
44
44
 
45
45
  Javascript
46
46
 
@@ -262,6 +262,90 @@
262
262
 
263
263
 
264
264
 
265
+ ```
266
+
267
+ html
268
+
269
+
270
+
271
+ <!DOCTYPE html>
272
+
273
+ <html lang="en">
274
+
275
+ <head>
276
+
277
+ <meta charset="UTF-8">
278
+
279
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
280
+
281
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
282
+
283
+ <title>Memory Test</title>
284
+
285
+ <link rel="stylesheet" href="styles.css">
286
+
287
+ </head>
288
+
289
+ <body>
290
+
291
+ <header class="header">
292
+
293
+ <h2>Memory Test</h2>
294
+
295
+ </header>
296
+
297
+
298
+
299
+ <div class="question">
300
+
301
+ <!-- <ul class="ul">
302
+
303
+ <h3>Q1. How many chairs are there?</h3>
304
+
305
+ <div class="li">
306
+
307
+ <li>A. 3</li>
308
+
309
+ <li>B. 4</li>
310
+
311
+ <li>C. 1</li>
312
+
313
+ <li>D. 2</li>
314
+
315
+ </div>
316
+
317
+ </ul>
318
+
319
+
320
+
321
+ <a href="result.html" class="btn-circle-fishy">Next</a> -->
322
+
323
+ </div>
324
+
325
+
326
+
327
+ <footer class="footer">
328
+
329
+ Keep your brain working!
330
+
331
+ </footer>
332
+
333
+
334
+
335
+
336
+
337
+ <script src="app.js"></script>
338
+
339
+
340
+
341
+ </body>
342
+
343
+ </html>
344
+
345
+ ```
346
+
347
+
348
+
265
349
 
266
350
 
267
351
  ### 補足情報(FW/ツールのバージョンなど)

1

jsonファイルのソースコードを載せました。

2021/03/01 10:24

投稿

Suffenjoying
Suffenjoying

スコア10

test CHANGED
File without changes
test CHANGED
@@ -144,6 +144,124 @@
144
144
 
145
145
 
146
146
 
147
+ ```
148
+
149
+ questions.json
150
+
151
+
152
+
153
+ {
154
+
155
+ "questions": [
156
+
157
+ {
158
+
159
+ "question": "How many chairs are there?",
160
+
161
+ "fields": {
162
+
163
+ "a": 1,
164
+
165
+ "b": 2,
166
+
167
+ "c": 3,
168
+
169
+ "d": 4
170
+
171
+ },
172
+
173
+ "answer": "a"
174
+
175
+ },
176
+
177
+ {
178
+
179
+ "question": "How many lights are there?",
180
+
181
+ "fields": {
182
+
183
+ "a": 1,
184
+
185
+ "b": 2,
186
+
187
+ "c": 3,
188
+
189
+ "d": 4
190
+
191
+ },
192
+
193
+ "answer": "c"
194
+
195
+ },
196
+
197
+ {
198
+
199
+ "question": "What is it on the sofa?",
200
+
201
+ "fields": {
202
+
203
+ "a": "person",
204
+
205
+ "b": "stove",
206
+
207
+ "c": "cushions",
208
+
209
+ "d": "Beats me"
210
+
211
+ },
212
+
213
+ "answer": "b"
214
+
215
+ },
216
+
217
+ {
218
+
219
+ "question": "Where is the light bulb?",
220
+
221
+ "fields": {
222
+
223
+ "a": "desk",
224
+
225
+ "b": "table",
226
+
227
+ "c": "ceiling",
228
+
229
+ "d": "Beats me"
230
+
231
+ },
232
+
233
+ "answer": "d"
234
+
235
+ },
236
+
237
+ {
238
+
239
+ "question": "How many questions have you answered?",
240
+
241
+ "fields": {
242
+
243
+ "a": 1,
244
+
245
+ "b": 2,
246
+
247
+ "c": 3,
248
+
249
+ "d": 4
250
+
251
+ },
252
+
253
+ "answer": "d"
254
+
255
+ }
256
+
257
+ ]
258
+
259
+ }
260
+
261
+ ```
262
+
263
+
264
+
147
265
 
148
266
 
149
267
  ### 補足情報(FW/ツールのバージョンなど)