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