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