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