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