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