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