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