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