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