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