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