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