Alternative to the HTML Bold tag

后端 未结 21 1865
野性不改
野性不改 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:21

    You can use the font-weight attribute on your

    For example:

    This is my paragraph

    You can either have your CSS inline as below:

    This is my paragraph

    Or have it in your external CSS stylesheet as below:

    p{
      font-weight:bold;
    }
    

提交回复
热议问题