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