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