Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

Aim: WAP to Create a webpage in HTML with colour and background effects.

<!DOCTYPE html>

<html>

<body>

<center>

<h1 style="background-color:rgb(255, 99, 71);">Hi</h1>

<h1 style="background-color:DodgerBlue;">This is Ajay</h1>

<h1 style="background-color:#3cb371;">This is HTML colors</h1>

<h1 style="background-color:rgb(245, 71, 196);">This is CSS</h1>

<h1 style="background-color:red;">RGB is a type of color</h1>

<h1 style="background-color:hsl(39, 100%, 50%);">RGBA is another type of


color</h1>

<p>In HTML, you can specify colors using Hex values.</p>

</center>

</body>

</html>

Output:

You might also like