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