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