質問編集履歴
1
誤字
test
CHANGED
File without changes
|
test
CHANGED
@@ -5,6 +5,52 @@
|
|
5
5
|
|
6
6
|
|
7
7
|
```HTML
|
8
|
+
|
9
|
+
<!doctype html>
|
10
|
+
|
11
|
+
<html lang="ja">
|
12
|
+
|
13
|
+
<head>
|
14
|
+
|
15
|
+
<!-- Required meta tags -->
|
16
|
+
|
17
|
+
<meta charset="utf-8">
|
18
|
+
|
19
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
<!-- Bootstrap <CSS -->
|
24
|
+
|
25
|
+
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
|
26
|
+
|
27
|
+
<link href="/font/css/open-iconic-bootstrap.css" rel="stylesheet">
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
<link href="https://cdn.jsdelivr.net/gh/gitbrent/bootstrap4-toggle@3.6.1/css/bootstrap4-toggle.min.css" rel="stylesheet">
|
32
|
+
|
33
|
+
<script src="https://cdn.jsdelivr.net/gh/gitbrent/bootstrap4-toggle@3.6.1/js/bootstrap4-toggle.min.js"></script>
|
34
|
+
|
35
|
+
<Link href="https://use.fontawesome.com/releases/v5.6.1/css/all.css" rel="stylesheet" />
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
</head>
|
40
|
+
|
41
|
+
<body>
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
<!-- Button trigger modal -->
|
46
|
+
|
47
|
+
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal">
|
48
|
+
|
49
|
+
Launch demo modal
|
50
|
+
|
51
|
+
</button>
|
52
|
+
|
53
|
+
|
8
54
|
|
9
55
|
<!-- Button trigger modal -->
|
10
56
|
|
@@ -56,4 +102,14 @@
|
|
56
102
|
|
57
103
|
</div>
|
58
104
|
|
105
|
+
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
|
110
|
+
|
111
|
+
</body>
|
112
|
+
|
113
|
+
</html>
|
114
|
+
|
59
115
|
```
|