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