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