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