Computer Science, asked by rajinder010778, 1 year ago

write the HTML code to display links of a web page in yellow colour​

Answers

Answered by MrVaiBH
6
you can try this......

<a href="#" style="color: yellow;">link</a>

if still in problem...

search on w3school.com

it is a good site for programmers
Answered by omegads04
3

<a href=http://www.gmail.com>here</a> to go gmail.

In the above html line, the symbol <a> indicates the link which should be started where </a> indicates the ending of a link. We can specify the target as <a href=” ”>. After that we have to add the text which will work as a link. Lastly add this symbol </a> tag which shows the link ends here.

<a  href=http://www.gmail.com “style=”yellow :rgb(255,255,0)”>here</a>

By above example, we can clearly see that adding of color in a web page is by adding RGB value in style=””.

Similar questions