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