Computer Science, asked by Gowthamqwl, 4 hours ago

Make an HTML program to display "All the best" in bold and underline and change the background to pink

Answers

Answered by NotPrash
0

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: pink;

     }

   </style>

 </head>

 <body>

   <strong><u>ALL THE BEST</u></strong>

 </body>

</html>

Similar questions