Computer Science, asked by kumbhakarna, 6 hours ago

Create a web page in which you should mention Heading, Paragraph, Background Color, Break the line, and Horizontal line tags.

Answers

Answered by NotPrash
1

Answer:

<!DOCTYPE html>

<html>

 <head>

   <meta charset="utf-8">

   <meta name="viewport" content="width=device-width">

   <title>repl.it</title>

   <link href="style.css" rel="stylesheet" type="text/css" />

   <style>

     body {

       background-color: blue;

     }

   </style>

 </head>

 <body>

   <h1>Your Heading</h1>

   <br>

   <p>Your paragraph</p>

   <hr>

 </body>

</html

Similar questions