Computer Science, asked by priyanshudaharwal8b, 5 months ago


Activity
Create a web page named as "Success".
Choose the title "Success" for the web page.
Set background colour of the web page to Orange.
Enter the text in the web page as shown in the picture.
Choose Font size - 7 for the text 'Success', Font Face-'Cooper Black and Font Color - 'Green'.
Choose the Font size -5, Font Face- 'HomewardBound' and Font Color-'Blue' for the sub-heading such
as PLAN, LISTEN etc.
Choose the Font size-4, Font Face-'Lucida Handwriting' and Font Color-'White' for the text written under
the sub-headings
Choose the Font size- 4. Font Face- 'Cooper Black' and Font Color- 'Green' for the text "With Best
Wishes".
91​

Answers

Answered by ItsNikkihere
15

your answer here , it's absolutely correct

Attachments:
Answered by amikkr
0

The webpage can be made using HTML and CSS.

HTML stands for Hypertext Markup Language. It is a language used to structure and format web pages. HTML stands for Hypertext Markup Language. HTML is the foundation of most websites and is typically used in with CSS.

CSS stands for Cascading Style Sheets. It is a style sheet language used to describe the look and formatting of a document written in HTML

Here is the code to create the webpage:

<html>

 <head>

   <title>Success</title>

   <style>

     body {

       background-color: orange;

     }

     h1 {

       font-size: 7pt;

       font-face: "Cooper Black";

       color: green;

     }

     h2 {

       font-size: 5pt;

       font-face: "HomewardBound";

       color: blue;

     }

     p {

       font-size: 4pt;

       font-face: "Lucida Handwriting";

       color: white;

     }

   </style>

 </head>

 <body>

   <h1>Success</h1>

   <h2>PLAN</h2>

   <p>Plan your work, and work your plan.</p>

   <h2>LISTEN</h2>

   <p>Listen to your elders and learn from their experience.</p>

   <h2>BELIEVE</h2>

   <p>Believe in yourself, and you will achieve your goals.</p>

   <h2>DREAM</h2>

   <p>Dream big, and never give up on your dreams.</p>

   <p style="font-size: 4pt; font-face: 'Cooper Black'; color: green;">With                   best Wishes</p>

 </body>

</html>

#SPJ2

Similar questions