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