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