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