Computer Applications
Write the HTML code to do the following :
To display a horizontal line of green colour.
HTML Advanced Features
1 Like
Answer
<HR COLOR = "GREEN">
Answered By
1 Like
Related Questions
Observe the following table and write the HTML code to generate it :
Consider the following web page:
(a) The text at P is :
- the title of a book on tennis
- a different web page
- another website
- a web address
(b) The link at R helps the user to :
- close this session on the internet
- access new websites
- use a search engine
- send an email
(c) Clicking on the person serving in the image at Q displays another web page. This area in the image is a :
- hyperlink
- website
- wildcard
- search engine
(d) The Internet can be used to find the websites of other tennis coaching associations by using :
- find and replace
- a search engine
- a CD ROM
- a DVD
Write the HTML code to do the following :
To create a hyperlink on the word CLICK to an image named testimage.jpeg.
Write output of the following HTML code.
<html> <head> <title> Table </title> </head> <body> <table BORDER = "1"> <tr> <th ALIGN = "center" rowspan = "3"> ONE </th> <th> TWO </th> <th>THREE </th> </tr> <tr> <td> Rose </td> <td> Lily </td> </tr> <tr> <td ALIGN = "center"> Pansy </td> <td ALIGN = "center" colspan = "2"> Dahlia </td> </tr> </table> </body> </html>