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