CSS Tutorials

Embedded styles

embedded_styles.html
<html>
<head>
<title>Embedded Styles</title>

<style type="text/css">
<!--
body {font-family: Arial, Helvetica, sans-serif;background: #999;}
.demo_content {font-size: 40px; padding: 20px; background: #f5f5f5; color:#999;}
-->
</style>
</head>
<body>
<p>Lorem Ipsum</p>

<p class="demo_content">Lorem Ipsum</p>
</body>
</html>
 
Embedded Styles

Lorem Ipsum

Lorem Ipsum

CSS
Other Tutorials