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