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