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