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