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