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