xxxxxxxxxx
You can integrate internal CSS stylesheets by placing the <style> element in the <head> section of a page. Internal styles apply to whole pages but not to multiple HTML documents. Several pages can be styled by repeating the same block of internal styles in them.
xxxxxxxxxx
<html>
<head>
<style>
html{
background: red;
}
</style>
</head>
</html>