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