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