Computer scienceFrontendHTMLInteraction with other technologies

Connecting CSS to HTML

Connecting styles

Report a typo

Connect the following external CSS file https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css and observe the styling applied.

Write HTML and CSS code
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>External CSS</title>
</head>
<body>
<div class="card blue-grey darken-1">
<div class="card-content white-text">
<span class="card-title">Card Title</span>
<p>I am a very simple card. I am good at containing small bits of information.
I am convenient because I require little markup to use effectively.</p>
</div>
<div class="card-action">
<a href="#">This is a link</a>
<a href="#">This is a link</a>
</div>
</div>
</body>
</html>
Completed 1 of 2
CSS file is connected
The code is valid
___

Create a free account to access the full topic