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