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