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