Computer Science, asked by aryanthegenius10, 11 months ago

write HTML code for the following webpage with the following discription
1. Title for the webpage is HTML
2. Heading will be displayed in orange colour
3. background colour of the webpage is blue each list is displayed in Italic form
4. list item will be displayed in white colour


please give me answer

Attachments:

Answers

Answered by Anonymous
4

Hi

<!DOCTYPE html>

<html lang="en">

<head>

   <meta charset="UTF-8">

   <title>HTML</title>

   <style>

       body {

           background-color: blue;

       }

       h1 {

           color: orange;

       }

       li {

           color: white;

           font-style: italic;

       }

   </style>

</head>

<body>

   <h1>HTML Code</h1>

   <p>We can create a webpage by writing in any text editor like notepad</p>

   <p>There are various tag used in HTML</p>

   <ol type="i">

       <li>HTML</li>

       <li>Head (after HTML)</li>

       <li>Title (inside head)</li>

       <li>Body</li>

   </ol>

</body>

</html>

Similar questions