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