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