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