|
|
|
Search for
C,C++,DAA Programs. Send video songs to your loved ones.
|
|
Custom Search
|
|
|
|
|
|
Shaadi.com Matrimonials
|
Important Questions: E-Commerce
- Page 6
Page1 ||
Page2 ||
Page3 ||
Page4 ||
Page5 ||
Page6 ||
Page7 ||
Page8
Page9 ||
Page10 ||
Page11 ||
Page12 ||
Page13
|
|
|
Q25. how is an image
inserted in a html document?
Ans. You add images with the image tag in the body of the document.
The image tag tells the browser to display a specific image at this
point in the page.
e.g.:-- <img src="filename.gif" align=left/right width=447 height=500
alt="text">
Q26. describe the attributes of the image tag.
Ans. The image tag has six often-used attributes:
src. Source. This is the location and name of the image you are using.
As with anchors and links, use the full URL if the image is on another
server. Use relative URLs if it is within your own site. Remember that
the URL must begin and end with quotes.
align. Alignment. You can align the image to the right or left side of
the page. You cannot center it. width. Width of the image in pixels.
height. Height of the image in pixels.
border. Thickness of the border. in pixels, around the image. Use the
border command only when the image is also the anchor for a link. |
|
|
|
alt. Alternate text. This is the text that appears
in a reader's browser if the reader has his or her image loading turned
off or if the browser doesn't display graphics.
hspace should be the amount of space you want on the sides your
picture in pixels
vspace should be the amount of space you want on the top and bottom of
your picture in pixels
Q27. how are the various pages are linked in
html?
Ans. Pages in an HTML document are linked together by using Anchor tag.
Links can be of 2 types:--
Links to an external document.
Link or jumps to a specific place within the same document.
To create links the tag used is Anchor tag. An anchor is simply a link
from one place in a document to another place in the same document.
e.g.:-- <a href="url">Text to be displayed</a>
“href” stands for hyperrefrence and gives the url of the page to be
linked with.
|
|
|
|
Q28. what are the attributes
of anchor tag?
Ans. There are three attributes of anchor tag:--
LINK :-- changes the default color of the hyperlink to whatever color
is specified with the tag.
ALINK :-- changes the default color of the hyperlink that is activated
to whatever color is specified with the tag.
VLINK :-- changes the default color of the hyperlink that is already
visited to whatever color is specified with the tag.
Q29. what are frames?
Ans. With frames, you can display more than one Web page in the same
browser window.
The Frameset Tag:-- The <frameset> tag defines how to divide the window
into frames Each frameset defines a set of rows or columns The values of
the rows/columns indicate the amount of screen area each row/column will
occupy
|
|
Previous
:
Next
|