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