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