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