I am working on web application where I have taken href. But the default font of it is too small when comparing to the page. So I want to increase the size of the font.
My output page look like below:
I have tried by font size for anchor tag but it doesn't show any effect after the font tag.
Code I have tried is:
<font size="100px"><a href="selectTopic?html" style="text-decoration: none">HTML 5</a></font>
You can do like this:
a {font-size: 100px}
Try avoid using font tag because it's deprecated. Use CSS like above instead. You can give your anchors specific class and apply any style for them.