回答編集履歴
1
htmlソースに追記
answer
CHANGED
|
@@ -1,11 +1,20 @@
|
|
|
1
1
|
せめてHTMLのソースだけでも貼っていただきたいです。。。
|
|
2
2
|
|
|
3
3
|
```html
|
|
4
|
+
<!DOCTYPE html>
|
|
5
|
+
<html>
|
|
6
|
+
<head>
|
|
7
|
+
<script type="text/javascript" src="https://code.jquery.com/jquery-latest.min.js"></script>
|
|
8
|
+
<title>HTML, CSS and JavaScript demo</title>
|
|
9
|
+
</head>
|
|
10
|
+
<body>
|
|
4
|
-
<button>ボタン</button>
|
|
11
|
+
<button>ボタン</button>
|
|
5
|
-
<button>ボタン</button>
|
|
12
|
+
<button>ボタン</button>
|
|
6
|
-
<button>ボタン</button>
|
|
13
|
+
<button>ボタン</button>
|
|
7
|
-
<button>ボタン</button>
|
|
14
|
+
<button>ボタン</button>
|
|
8
|
-
<button>ボタン</button>
|
|
15
|
+
<button>ボタン</button>
|
|
16
|
+
</body>
|
|
17
|
+
</html>
|
|
9
18
|
```
|
|
10
19
|
|
|
11
20
|
cssソース
|