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