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