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