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