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