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