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