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