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