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