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