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