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