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