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