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