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