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