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