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