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