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