質問編集履歴
1
htmlの全体を表示させました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -234,7 +234,27 @@
|
|
234
234
|
|
235
235
|
|
236
236
|
|
237
|
-
```
|
237
|
+
```html
|
238
|
+
|
239
|
+
<!DOCTYPE html>
|
240
|
+
|
241
|
+
<html lang="ja">
|
242
|
+
|
243
|
+
<head>
|
244
|
+
|
245
|
+
<meta charset="UTF-8">
|
246
|
+
|
247
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
248
|
+
|
249
|
+
<title>MENTA課題③</title>
|
250
|
+
|
251
|
+
<link rel="stylesheet" href="style.css">
|
252
|
+
|
253
|
+
</head>
|
254
|
+
|
255
|
+
<body>
|
256
|
+
|
257
|
+
|
238
258
|
|
239
259
|
<h1>ToDoリスト</h1>
|
240
260
|
|
@@ -298,6 +318,10 @@
|
|
298
318
|
|
299
319
|
</script>
|
300
320
|
|
321
|
+
</body>
|
322
|
+
|
323
|
+
</html>
|
324
|
+
|
301
325
|
```
|
302
326
|
|
303
327
|
|