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