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