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