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