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