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