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