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