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