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