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