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