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