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