Answers for "What is the "style", when creating an internal CSS?"

CSS
14

add css to an html file

<link rel=“stylesheet” type=“text/css” href=“style.css” />
Posted by: Guest on March-14-2020
1

internal css

<!DOCTYPE html>
<html>
<head>
<style>
body {background-color: powderblue;}
h1   {color: blue;}
p    {color: red;}
</style>
</head>
<body>

<h1>This is a heading</h1>
<p>This is a paragraph.</p>

</body>
</html>
Posted by: Guest on June-21-2020
1

What is the "style", when creating an internal CSS?

It's a tag
Posted by: Guest on September-22-2021

Browse Popular Code Answers by Language