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