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