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