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