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