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