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