Assuming a multimedia application without use of graphics seems to be immposible.Images and videos are the most efficient ways of communication.
At first u need some basic tags such as to set background color etc.
To set the color of ur BODY BACKGROUND we use a tag:
<Body BGCOLOR = "BLUE">
In this way u can change the color of ur background.Some standard colors are :
RED
,BLACK
,BLUE
,GREEN
,YELLOW
,WHITE
,AQUA
,PINK
,ORANGE etc
There are many other colors that can b used.
Now the question come about inserting an image in the web page.To insert an image in a page we use:
<IMG SRC = "image.bmp">
The tag can be extended in the way as shown below:
<IMG SRC = "image.gif" align = right ALT = "This is the image" hspace = 5>
In this way the image can be aligned and an alternet text can be provided to it so that if any user could not see the image,atleast he could know what the image is all about,when he places pointer on the image.
Also u can do is:
<IMG SRC = "image.bmp" align = right ALT = "This is the altered image" width = 170 height = 20>
![]()
Place the pointer on the images,the alternate text will appear.The images can be *.gif ,*.bmp etc that can find support.U can also use borders as:
<IMG SRC = "image.bmp" align = right ALT = "This is the altered image with border" width = 170 height = 20 border = 5>
![]()
In this way by the use of tags u can make ur image more meaning ful and happening.The image that u insert into ur web page must be available on ur computer on which u r designing ur web page.Otherwise it will always show a "Unav. Icon" in place of the image.