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