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