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