Use on the webTotal Use [ 5014 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/5737ce24aa7198bbf3af03c77b1588dd?family=Female+and+Male+Symbols" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/5737ce24aa7198bbf3af03c77b1588dd?family=Female+and+Male+Symbols);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Female and Male Symbols";
src: url("https://db.onlinewebfonts.com/t/5737ce24aa7198bbf3af03c77b1588dd.eot");
src: url("https://db.onlinewebfonts.com/t/5737ce24aa7198bbf3af03c77b1588dd.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/5737ce24aa7198bbf3af03c77b1588dd.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/5737ce24aa7198bbf3af03c77b1588dd.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/5737ce24aa7198bbf3af03c77b1588dd.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/5737ce24aa7198bbf3af03c77b1588dd.svg#Female and Male Symbols")format("svg");
}
2CSS rules to specify fonts
font-family: "Female and Male Symbols";