質問編集履歴

2

「class = "btn-primary"」を使用し反映されない旨を追記。

2021/09/27 01:29

投稿

nunonion
nunonion

スコア1

test CHANGED
@@ -1 +1 @@
1
- eclipsでのBootstrap使用のためのリンク文のエラーについて
1
+ EclipseでのBootstrap使用のためのリンク文のエラーについて
test CHANGED
@@ -2,11 +2,15 @@
2
2
 
3
3
  プログラミング初心者です。
4
4
 
5
- eclipsを用いてHTMLとCSSの勉強をしています。
5
+ Eclipseを用いてHTMLとCSSの勉強をしています。
6
6
 
7
7
  現在、Bootstrapを使用するために、HTMLのheadにリンクをコピペして記述したのですが、integrityとcrossoriginの箇所が、
8
8
 
9
9
  「属性名 (integrity) が未定義です。」と表示され、Bootstrapのclassが適用されない状態になっています。
10
+
11
+
12
+
13
+ また、「class = "btn-primary"」を使用することでボタンのビジュアルが変わるイメージでいたのですが、反映されていない状態です。
10
14
 
11
15
 
12
16
 

1

Bootstrap使用部分を追記しました。

2021/09/27 01:29

投稿

nunonion
nunonion

スコア1

test CHANGED
File without changes
test CHANGED
@@ -42,6 +42,42 @@
42
42
 
43
43
  </head>
44
44
 
45
+
46
+
47
+ <head>
48
+
49
+
50
+
51
+ <meta charset="UTF-8">
52
+
53
+ <title>Insert title here</title>
54
+
55
+ <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
56
+
57
+ integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
58
+
59
+ crossorigin="anonymous">
60
+
61
+
62
+
63
+
64
+
65
+ </head>
66
+
67
+ <body>
68
+
69
+
70
+
71
+ <input type= "text" style= "width:200px;">
72
+
73
+ <input type = "button" class = "btn-primary" value = "ボタン">
74
+
75
+
76
+
77
+ </body>
78
+
79
+
80
+
45
81
  ```
46
82
 
47
83