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