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