blob: 4de4e5fb97504ac9f160982e6f9791a435bbcd23 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>Inline CSS Example</title>
</head>
<meta charset="utf-8">
<body style="background-color:#F5F5F5;color:#008080;">
<h1 style="background-color:#008080;color:#F5F5F5;">Inline CSS</h1>
<p>This paragraph inherits the styles applied to the body tag.</p>
<!--This is exactly what the book requests, it's so simple that no differentiation or style could really be done-->
</body>
</html>
|