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