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