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