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