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