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