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