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