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