CSS - Creating username in bold text

PHOTO EMBED

Sat Jul 31 2021 12:26:25 GMT+0000 (Coordinated Universal Time)

Saved by @maryjaay666 #html

<style>
      img {
        width: 100px;
        border-radius: 50px;
        float: left;
        margin-right: 10px;
      }

      .username {                                 # .username
        font-weight: bold;                        # Text style
      }
    </style>
  </head>
  <body>
    <img src="images/html css code.jpg" alt="" />
    <p class="username">@MarryJaay</p>            # Creating a class
    <p>Summit of Web Development</p>
  </body>
</html>
content_copyCOPY

Step One. Create a class Step Two. .username (for example) Step Three. Your chosen text style