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