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