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