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