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