前提・実現したいこと
プログラミング初心者です。
Eclipseを用いてHTMLとCSSの勉強をしています。
現在、Bootstrapを使用するために、HTMLのheadにリンクをコピペして記述したのですが、integrityとcrossoriginの箇所が、
「属性名 (integrity) が未定義です。」と表示され、Bootstrapのclassが適用されない状態になっています。
また、「class = "btn-primary"」を使用することでボタンのビジュアルが変わるイメージでいたのですが、反映されていない状態です。
これを解決する方法をお教えください。
宜しくお願いします。
発生している問題・エラーメッセージ
<head> <meta charset="UTF-8"> <title>Insert title here</title> <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"> </head> <head> <meta charset="UTF-8"> <title>Insert title here</title> <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"> </head> <body> <input type= "text" style= "width:200px;"> <input type = "button" class = "btn-primary" value = "ボタン"> </body>
該当のソースコード
HTML
1integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" 2 crossorigin="anonymous">
試したこと
補足情報(FW/ツールのバージョンなど)
回答1件
あなたの回答
tips
プレビュー