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