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