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