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