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