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