V.Vidhya Logo

V.Vidhya

DOM Cumulative I


All these exercises are in continuation. Do each of them in progression after completion of the previous one.


<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />

    <title>DOM</title>
  </head>
  <body>
  </body>
</html>
.red {
  color: red;
}

.blue {
  color: blue;
}

.box {
  border: 1px solid black;
  background-color: pink;
}

Q1.

A p with red text that says “Hey, I am a red paragraph!”


Q2.

A h3 with blue text that says “I am a blue h3!”


Q3.

A div with a black border and pink background color with the following element inside it:


Expected Output:

Preview


Prev Post
Manipulating Attributes & Style
Next Post
DOM Cumulative II