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