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