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