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