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