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