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