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