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