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