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