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