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