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