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