CSS Basic Page Style

A simple example showing how CSS can style the page background and text.

Preview

Code

<style>
body{
font-family:Arial;
background:#f1f5f9;
padding:20px;
}
h1{color:#0f172a;}
</style>

<h1>Hello CSS</h1>
<p>This page is styled using CSS.</p>

More CSS HOME Examples (5)