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