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