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