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