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