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