Html mail icon

You're looking for the HTML code to display a mail icon!

Here are a few options:

Option 1: Using Font Awesome

<i class="fas fa-envelope"></i>

Option 2: Using Material Design Icons

<i class="material-icons">mail</i>

Option 3: Using Unicode Character

&#x2709;

Option 4: Using HTML Entity

&#9993;

You can use these codes in your HTML file or CSS file to display the mail icon.

If you want to customize the icon, you can use CSS to change its color, size, or style. For example:

.mail-icon {
  font-size: 24px;
  color: #00698f;
}

And then add the class to the icon:

<i class="fas fa-envelope mail-icon"></i>