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