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