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