InterviewSolution
| 1. |
Write the HTML code to generate a Web Page in the format given below :Consider the following while writing the HTML code1. Background of page is yellow2. Title of the page is “gaming”3. Text of whole document is verdana4. Heading of the page is maroon and arial bold5. Image used is “image1.jpg”6. border of table is green and of size 27. background colour of table is white8. Image used in the table is “war.jpg” and “call.jpg”9. Horizontal line colour is red10. Bottom link is “game.html” |
|
Answer» <HTML> <html><HEAD><TITLE> Gaming</TITLE></HEAD> <BODY bgcolor = “yellow”> <basefont face = “verdana” <H2 ALIGN=center><font color =”maroon” face = “arial bold”>Computer Gaming</font> </H2> <IMG SRC="image1.jpg" HEIGHT=150 WIDTH=200 ALIGN="right"> <P><B>A personal computer game(also known as a computer game or PC game) is a game played on a personal computer, rather than on a video game console or arcade machine. Computer games have evolved from the simple graphics and gameplay of early titles like Spacewarl, to a wide range of more visually advanced titles. <P>Basically there are four types of computer games:<BR> <OL><LI>Strategy <LI> First person shooters <LI> 3rd person views <LI> Racing </OL> <TABLE ALIGN=center BORDER=2 bordercolor="green"> <Caption> Top Games</Caption> <TR><td>Warcraft</td> <TD>Strategic game</TD> <TD><img src = war.jpg></TD> <td>Call of Duty</td> <TD>First Person shooter</TD> <TD><img src = call.jpg></TD> </tr> </table> <HR SIZE=2 COLOR=red> <FONT SIZE=2><P ALIGN=center>FOR FURTHER ENQUIRES :<A HREF="game.html"></A> </BODY></HTML> |
|