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