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