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