increase font size of hyperlink text html

后端 未结 5 2039
无人及你
无人及你 2021-02-01 07:45

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.

5条回答
  •  礼貌的吻别
    2021-02-01 08:27

    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.

提交回复
热议问题