Horje

Example of using CSS under HTML Internal CSS Style

Internal Style defines <style>body {background-color: powderblue;}</style> which you can add in a html page likely following example.
index.html
Example: HTML
<!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>

Output should be:

Example of using CSS under HTML Internal CSS Style




Type:
html
Category:
Web Tutorial
Sub Category:
HTML CSS
Uploaded by:
Admin