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