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