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