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