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