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