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