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