Computer Science, asked by ashishrawat4, 7 months ago

Name the following with respect to HTML:

a. Attribute for changing bullet type of list tag.

b. Element to create a hyperlink

Answers

Answered by aditiss
8

a) list-style-type

b) <a href="link"> Link </a>

Answered by MystricalDimple
0

&lt;Marquee scrollamount =500&gt;HelloHelloHello&lt;/marquee&gt;

 &lt;Marquee scrollamount =500&gt;❤❤❤&lt;/marquee&gt;

a)The default is bullets, which is small black circles. For creating an unordered list with circle bullets, use CSS property list-style-type. We will be using the style attribute. The style attribute specifies an inline style for an element.

b)The HTML <a> element (or anchor element), with its href attribute, creates a hyperlink to web pages, files, email addresses, locations in the same page, or anything else a URL can address. Content within each <a> should indicate the link's destination.

Similar questions