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