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