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