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