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