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