Computer Science, asked by inshirahshuaib2008, 8 months ago

Create aHTML webpage to insert a paragraph on your favourite subject and apply the following text properties: a) color - green b)text-align - right c) text-decoration - overline d) word spacing - 10px PLEASE SEND ME THE INPUT AND OUTPUT

Answers

Answered by pesh20gathoni
7

<html>

  <head>

  </head>

  <body text= "GREEN" >

     

<p color = "GREEN"  align = "RIGHT" style = "word-spacing:10px;">

<br>         My favorite subject.

<br>A HTML webpage to insert a paragraph on your favorite

subject and apply the following text properties:

a)color - green b)text-align - right c) text-decoration -

overlie d) word spacing - 10px PLEASE SEND ME THE INPUT

AND OUTPUT

     </p>

  </body>

</html>

Below is the output of the above code.

Attachments:
Answered by Anonymous
4

Answer:                                          INPUT

<html>

<head>

</head>

<style type ="text/css">

p{word spacing - 10px;text-align-right;text-decoration-overline;background-color:green}

</style>

<body>

<h1> favourite subject </h1>

<p> My favourite subject is Hindi</P>

</\body>

</html>

                                                         OUTPUT

Explanation:

Attachments:
Similar questions