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