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