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