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