Use on the webTotal Use [ 5114 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/e7e73ed7814d2efdd7eea8b276145b3d?family=For+A+Pessimist%2C+I%27m+Pretty+Optimistic" 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/e7e73ed7814d2efdd7eea8b276145b3d?family=For+A+Pessimist%2C+I%27m+Pretty+Optimistic);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "For A Pessimist, I'm Pretty Optimistic";
src: url("https://db.onlinewebfonts.com/t/e7e73ed7814d2efdd7eea8b276145b3d.eot");
src: url("https://db.onlinewebfonts.com/t/e7e73ed7814d2efdd7eea8b276145b3d.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/e7e73ed7814d2efdd7eea8b276145b3d.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/e7e73ed7814d2efdd7eea8b276145b3d.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/e7e73ed7814d2efdd7eea8b276145b3d.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/e7e73ed7814d2efdd7eea8b276145b3d.svg#For A Pessimist, I'm Pretty Optimistic")format("svg");
}
2CSS rules to specify fonts
font-family: "For A Pessimist, I'm Pretty Optimistic";