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