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