Computer scienceFrontendHTMLInteraction with other technologies

Connecting CSS to HTML

Connecting styles

Report a typo

Link the following CSS file located at https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css and see how the element on the web page changes.

Write HTML and CSS code
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>External CSS</title>
</head>
<body>
<div class="alert alert-danger" role="alert">
It's a red text — check it out!
</div>
</body>
</html>
Completed 1 of 2
CSS file is connected
The code is valid
___

Create a free account to access the full topic