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