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