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