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