Answers for "head css"

15

add css to an html file

<link rel=“stylesheet” type=“text/css” href=“style.css” />
Posted by: Guest on March-14-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
0

meta tag background

<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
Posted by: Guest on March-01-2020

Browse Popular Code Answers by Language