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