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