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