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