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