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