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