Alternative to the HTML Bold tag

后端 未结 21 1819
野性不改
野性不改 2020-12-23 15:35

Okay, so I know that in HTML you can use the tag, but isn\'t there a \"weight=bold\" attribute that I can use in the

21条回答
  •  天涯浪人
    2020-12-23 16:34

        #bold{
          font-weight: bold;
        }
        #custom{
          font-weight: 200;
        }
    
      

    here is a bold text using css

    here is a custom bold text using css

    I hope it's worked

提交回复
热议问题