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