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