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