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