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