回答編集履歴

1

htmlソースに追記

2017/11/08 02:36

投稿

kenny_sayama
kenny_sayama

スコア1036

test CHANGED
@@ -4,15 +4,33 @@
4
4
 
5
5
  ```html
6
6
 
7
- <button>ボタン</button>
7
+ <!DOCTYPE html>
8
8
 
9
- <button>ボタン</button>
9
+ <html>
10
10
 
11
- <button>ボタン</button>
11
+ <head>
12
12
 
13
- <button>ボタン</button>
13
+ <script type="text/javascript" src="https://code.jquery.com/jquery-latest.min.js"></script>
14
14
 
15
+ <title>HTML, CSS and JavaScript demo</title>
16
+
17
+ </head>
18
+
19
+ <body>
20
+
15
- <button>ボタン</button>
21
+ <button>ボタン</button>
22
+
23
+ <button>ボタン</button>
24
+
25
+ <button>ボタン</button>
26
+
27
+ <button>ボタン</button>
28
+
29
+ <button>ボタン</button>
30
+
31
+ </body>
32
+
33
+ </html>
16
34
 
17
35
  ```
18
36