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