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