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