Saved Bookmarks
| 1. |
Write HTML code to display your name and address with followingspecifications:- [3]a) Title of the page should be “My Profile”.b) Name should appear in “Red” colour, Address in “Green” colour and background in “yellow” colour.c) Name should be in Font “Times New Roman” and Address in Font “Arial” |
|
Answer» Answer: Here is the HTML code. Html head title. My profile /title /head body BGCOLOR= "yellow" Font color="red" face="Times New Roman" H1. Name goes here... /H1 Font color="green" face="Arial" H2. Your ADDRESS goes here... /H2 /Font /Body /Html
|
|