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