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