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