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