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