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