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