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