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