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