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