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