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