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