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