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