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