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