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