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