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