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