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