1<html>
2
3<body style="background-color:red;">
4 <p> test <p/>
5 <body/>
6 </html>
1<body style="background-color: #fff">
2 <!---this will change the body color---!>
3
4</body>
1<body style="background-color:powderblue;">
2<p style="background-color:tomato;">This paragraph has a red background.</p>
3</body>
1<p style="color: #ffffff;">Lorem ipsum...</p> <!-- text -->
2<p style="background-color: red;">Lorem ipsum...</p> <!-- background -->
3<h1 style="border: 2px solid #00ff00;">Lorem ipsum...</h1> <!-- border -->
4
5<!-- 3 ways to define colors -->
6<h1 style="background-color: rgb(255, 99, 71);">Lorem ipsum...</h1>
7<h1 style="background-color: #ff6347;">Lorem ipsum...</h1>
8<h1 style="background-color: hsl(9, 100%, 64%);">Lorem ipsum...</h1>