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