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