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