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