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