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