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