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