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