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