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