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