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