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