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