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