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