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