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