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