Answers for "head css style"

2

how to add css to html

<link rel="stylesheet" href="hi.css">
Posted by: Guest on July-01-2020
1

css in html head

<!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

Browse Popular Code Answers by Language