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