Use on the webTotal Use [ 5514 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/bcf6755e71a34f0f999ce9b66a34f6aa?family=HUMAN+ALTER+EGO+Bold+Italic" 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/bcf6755e71a34f0f999ce9b66a34f6aa?family=HUMAN+ALTER+EGO+Bold+Italic);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "HUMAN ALTER EGO Bold Italic";
src: url("https://db.onlinewebfonts.com/t/bcf6755e71a34f0f999ce9b66a34f6aa.eot");
src: url("https://db.onlinewebfonts.com/t/bcf6755e71a34f0f999ce9b66a34f6aa.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/bcf6755e71a34f0f999ce9b66a34f6aa.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/bcf6755e71a34f0f999ce9b66a34f6aa.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/bcf6755e71a34f0f999ce9b66a34f6aa.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/bcf6755e71a34f0f999ce9b66a34f6aa.svg#HUMAN ALTER EGO Bold Italic")format("svg");
}
2CSS rules to specify fonts
font-family: "HUMAN ALTER EGO Bold Italic";