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