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