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