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