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