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