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