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