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