Computer scienceFrontendHTMLInteraction with other technologies

Connecting CSS to HTML

Connecting Internal CSS to HTML

Report a typo

Include the following CSS code in the HTML code.

body {
  color: #70AB9A;
  background-color: #224138;
}
Write HTML and CSS code
<html>
<head>
<meta charset="utf-8">
<title>Internal CSS</title>
<!-- Enter your code here -->
</head>
<body>
<p>Once more ye waver dreamily before me,</p>
<p>Forms that so early cheered my troubled eyes!</p>
<p>To hold you fast doth still my heart implore me?</p>
<p>Still bid me clutch the charm that lures and flies?</p>
</body>
</html>
Completed 1 of 3
The CSS code is correctly connected
All styles have been connected
___

Create a free account to access the full topic