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