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