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