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