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