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