Computer Science, asked by ritwikakarmakar36, 1 month ago

nes
Answer the following
1. Differentiate between the VLINK and ALINK attributes.
2. Can you set an image as hyperlink? Explain with an example,
3. List the different attributes of the stable> tag. What are they used for?
4. What is a <marquee> tag? Name any two of its attributes?
5. Differentiate between radio buttons and check boxes.​

Answers

Answered by mrsanjusingh78
0

Answer:

(1) The ALINK attribute specifies the colour of an active link in a document. When we place the ALINK attribute with a colour value in BODY tag and click a link, it automatically changes with the color which is given in ALINK attribute. The VLINK attribute specifies the color of visited links in the document

(2)To use image as a link in HTML, use the <img> tag as well as the <a> tag with the href attribute. The <img> tag is for using an image in a web page and the <a> tag is for adding a link. Under the image tag src attribute, add the URL of the image. With that, also add the height and width

(3)In information systems, a tag is a keyword or term assigned to a piece of information (such as an Internet bookmark, digital image, database record, or computer file). This kind of metadata helps describe an item and allows it to be found again by browsing or searching.[1] Tags are generally chosen informally and personally by the item's creator or by its viewer, depending on the system, although they may also be chosen from a controlled vocabulary

(4)The HTML <marquee> tag is used for scrolling piece of text or image displayed either horizontally across or vertically down your web site page depending on the settings.

Example

Live Demo

<!DOCTYPE html>

<html>

<head>

<title>HTML marquee Tag</title>

</head>

<body>

<marquee>This is basic example of marquee</marquee>

<marquee direction = "up">The direction of text will be from bottom to top.</marquee>

</body>

</html>

(5)In a check box group, a user can select more than one option. Each check box operates individually, so a user can toggle each response "on" and "off." Radio buttons, however, operate as a group and provide mutually exclusive selection values. A user can select only one option in a radio button group

Explanation:

here is your answer

Similar questions