0 votes
38 views
in Computer Science by (8.5k points)
A) Your best friend emails you and tells you that he/she has created a webpage on an internet site having URL as: www.children.com/india/~abc.html

Now you want to create a link to this web page from your web page. Write the HTML code to do this.

OR

B) I) Write HTML code to display Horizontal line of red colour.

II) Write HTML Code to create a paragraph whose text colour is blue.

1 Answer

0 votes
by (56.5k points)
 
Best answer
(A) <A href="http://www.children.com/india/~abc.html"> Click

Here </A>

OR

(B) I) <hr color=Red>

II) <p><font color=Blue> Hello world</font></p>
...