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