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