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