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